From the docs:
A table view in the UIKit framework is limited to a single column because it is designed for a device with a small screen.
From the docs:
A table view in the UIKit framework is limited to a single column because it is designed for a device with a small screen.
Yes... unless you add subview in cell that looks like more than one column... i.e 2 label in each cell with same size and horizontally aliened can look like Table with 2 column...
Have look in the developer docuementation A Closer Look at Table-View Cells how to setup multiple columns in a table view cell.
What about putting another tableview next to that one and synchronize the movement (scrolling)? :)