I have multiple rows and columns of data. But iPhone UITableView contains only single column and multiple rows. How do I display my multi column data following Apple's Human Interface Guidelines? Any ideas?
feedback
|
|
A quick Google returned this: http://dewpoint.snagdata.com/2008/10/31/drawing-a-grid-in-a-uitableview/ It even shows how to add grid lines. | |||||||||||
feedback
|
|
Someone else is hosting that page now: | |||||||||||
feedback
|
|
Here the source code is also available. Grids | |||
|
feedback
|
|
You probably need to build it by your own, or use a library, like UIGridView. (I'm the creator) You can learn the source code of UIGridView. It's really short. | |||
|
feedback
|
|
If you are looking for something that looks like an Excel spreadsheet then I would recommend the MDSpreadview class. The source is available at http://mochidev.com/open. It looks pretty slick but bogs down if you have a lot of data to display. Other than that, you should probably just create your own UITableViewCell -- it's pretty easy with the new Storyboards of iOS5 and you can handle millions of cells of data. | |||
|
feedback
|