Reputation: 660
I need to have some sort of scrollview which is a grid 3 x n where n is determined by the result of a call to a URL. I was wondering whether a Tableview with custom tableviewcells or a scrollview with my custom views would best serve this purpose? Any pros and cons or links to help would be great. Many thanks Jules
Upvotes: 0
Views: 243
Reputation: 17732
The choice really depends on how you want them to scroll. If the 3 columns are to be linked, and scrolled all at once, then I definitely vote for custom UITableViewCells.
Whereas for the scrollview approach:
I presently have released an app myself that has several tableviews with custom cells to display data retrieved from a webservice. This implementation was very easy, and very intuitive to end users
Upvotes: 1