Possible Duplicate:
How to display multiple columns in a UITableView?
I have an UITableView with 30 rows. I would like each row to have a date, a title and a name.
Right now it’s like this:
Oct 29 name title
But the names and titles change so I have something like that :
Oct 29 name title
Oct 30 biggername biggertitle
Oct 30 xx title
I would like to make 3 equals columns like this:
Oct 29 | name | title
Oct 31 | b... | bi...
Oct 30 | xx | title
How can I do that in my UITableView?
Best and easy way to get this thing use
UITableViewCustomCell.See this link – Custom tableView Cell
In cell XIB take 3
UILabelfor each row then use them as your columns.If this is not suitable for you just search Custom TableView cell on google 🙂