Reputation: 303
Is there a class or framework that lets you draw tables with rows and columns on the iPhone. Or do you have to draw the table yourself and place a textfield in each slot.
Upvotes: 0
Views: 202
Reputation: 4428
Use UITableView
. It doesn't have columns because iPhone screen is much smaller than average screen of desktop computer. But if you want you can emulate them with custom UITableViewCell
s.
Upvotes: 1
Reputation: 42554
You need to draw the table yourself and place a text field in each slot. It's possible that you could find an open source implementation, but it's not very hard to write one based on a UIScrollView
, I've done it.
Upvotes: 0