views:

69

answers:

3

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.

+1  A: 

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...

mihirpmehta
+1  A: 

Have look in the developer docuementation A Closer Look at Table-View Cells how to setup multiple columns in a table view cell.

Frank Martin
+1  A: 

What about putting another tableview next to that one and synchronize the movement (scrolling)? :)

Ondrej
interesting idea. have you tried that?
dontWatchMyProfile