Ben10
Ben10

Reputation: 3259

How to create grid table view in iphone

Hello I want to create a table view like as following image

Sample Table View

There is any library is available. how can create like this.

Upvotes: 2

Views: 8708

Answers (2)

Shamsudheen TK
Shamsudheen TK

Reputation: 31339

I recommend to use UICollectionView and PSTCollectionView

or

You can use the UITableView for this and with your own custom cell which it is not complicated.

Note:

UICollectionView is only Available in iOS 6.0 and later.

The UICollectionView class manages an ordered collection of data items and presents them using customizable layouts. Collection views provide the same general function as table views except that a collection view is able to support more than just single-column layouts. Collection views support customizable layouts that can be used to implement multi-column grids, tiled layouts, circular layouts, and many more. You can even change the layout of a collection view dynamically if you want.

Upvotes: 2

Mayur Birari
Mayur Birari

Reputation: 5835

Check this repository GridTableView.
I used the same code to create 10 columns in iPad application.
Let me know your thoughts.

Upvotes: 2

Related Questions