meetpd
meetpd

Reputation: 9219

How do I add multiple columns in my table in iPhone SDK?

How do I add multiple columns in my table in iPhone SDK?

Any help would be highly appreciated.

Upvotes: 0

Views: 6601

Answers (1)

EmptyStack
EmptyStack

Reputation: 51374

Currently UITableView doesn't have the support to have multiple columns in table view cell. So, you can not add multiple columns in UITableView. But there are some alternates, like drawing custom grids on table view cells.

Have a look at this post.. iPhone Multiple Columns in UITableView.. This link http://usxue.is-programmer.com/posts/14176.html has the code..

Upvotes: 1

Related Questions