Is it possible to create multiple columns in UITableView, as my requirement demand me to do this, If it is possible how i can i resolve this issue.
Thanks in advance.
Is it possible to create multiple columns in UITableView, as my requirement demand me to do this, If it is possible how i can i resolve this issue.
Thanks in advance.
You may use UICollectionView for that. Or simply build each UITableViewCell with needed labels and elements in cycle with columns count
First thing you need to do is take a look at UITableViewCell
Documetation and Read the Content given there. If you read it properly, you'll get the Answer in the form of these Steps :
UITableViewCell
with UILabel
equals to Number of Columns.UITableViewCell
in your UITableView
.UITableView
with your Database Table Rows.Tutorials to Integrate custom UITableViewCell
:
GoodLuck !!!
If you will use CustomCell
there will be scrolling issue. So the best way to do this is UICollectionView
for ios6. I did it with CustomCell
also so if you are working for ios5 I will guide you.