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?

link|improve this question

38% accept rate
You asked specifically about UITableView, but consider using a UIWebView with an HTML table, which might make things easy. – Kristopher Johnson Mar 9 at 16:27
feedback

6 Answers

up vote 10 down vote accepted

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.

link|improve this answer
This article is gone, but the Google cache still has it. Now I have it in my offline stuff: if anybody needs it, message me with @yar here. – Yar Jun 15 '10 at 13:14
@yar i need that article send me at Rsajwan@csknowledgehub.com please – Saawan Dec 28 '10 at 10:57
@Saawan, check out the answers below, they have the links – Yar Dec 28 '10 at 16:54
@Yar i need to use multiple columns in universal app. Can you please send me the sample code? My mail id is yuva.manon@gmail.com Please help me. – Yuvaraj.M Dec 14 '11 at 13:25
the link doesn't work – AMH Jan 25 at 12:32
feedback

Someone else is hosting that page now:

http://usxue.is-programmer.com/posts/14176.html

link|improve this answer
there is no source code on this link. the link from black2842's answer is : dewpoint.snagdata.com/wp-content/uploads/2008/10/grids.zip – iPhoneDev Apr 27 '11 at 10:36
@iPhoneDev the link you gave is invalid. :( – Kjuly Nov 17 '11 at 8:45
1  
@Kjuly the time I gave this link , it was working. – iPhoneDev Nov 25 '11 at 7:01
@iPhoneDev I know. :D – Kjuly Nov 25 '11 at 7:16
feedback

Here the source code is also available. Grids

link|improve this answer
Again, invalid...:( – Kjuly Nov 17 '11 at 8:46
feedback

You can always go for this, at least for iPad (?) :-)

link|improve this answer
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.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.