Reputation: 16059
I'm trying to develop a grid-like application for the iPad. Has anyone seen a control that displays info in a grid? In the demos they use a grid-like layout in both the iBooks store and the pictures application.
Specifically in pictures, they are displaying a dynamic list of data in a grid.
I can work around it, of course, but I'd rather use a control if one exists. Thanks!
Upvotes: 3
Views: 7801
Reputation: 26532
You should try AQGridView it does what you need. Here are few screens of apps that use this library:
Upvotes: 6
Reputation: 16337
DTGridView:
http://www.danieltull.co.uk/blog/2009/10/28/dtgridview/
Upvotes: 8
Reputation: 34935
Nope, you will have to create your own. People have been writing Home Screen compatible views though, so you might want to search for open source projects with that functionality.
Upvotes: 0
Reputation: 64428
The people who know what controls are or or not in the 3.2 iPhone dev tools have all committed to Apple NDA so we can't tell you.
Steve is always watching.
If you have signed the NDA you should go to the Apple boards and ask.
You can however, make a gird like display very simply with the standard UITableview. Just have a tableviewcell subclass that displays columns. It took me about an hour to reproduce the photo picker display using that method.
Upvotes: 1