shashu10
shashu10

Reputation: 303

How to make tables like NSTableView in the iphone

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

Answers (2)

hoha
hoha

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

Upvotes: 1

Erik B
Erik B

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

Related Questions