Reputation: 4479
Is it possible to have something like Data Grid or Grid View control in iPhone?
Upvotes: 2
Views: 5072
Reputation: 2351
Arijasoft has got a static library
Arijasoft has got a static library using which developer can generate his own grid view implementation.
you can find the details here
Upvotes: 0
Reputation: 37494
I've had to roll my own implementation, using a custom UITableViewCell with a configurable number of columns. I would just dequeue this for each row, and set the data appropriately, according to the column I'm showing. I even put this UITableView inside a UIScrollView, with vertical scroll disabled, in order to have the table stretch more than the visible screen, and be able to scroll horizontally to reveal the columns.
Upvotes: 1