views:

1615

answers:

3

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!

+3  A: 

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.

TechZen
Thanks, that's probably the route I'll go. However, the 3.2 SDK is freely available. They have plenty of documentation on the new controls. I just couldn't find anything like a grid.
Sean Clark Hess
@Sean, the 3.2 Beta SDK is not freely available. It is available at no cost to iPhone Developer Program Members only and it is considered Apple Confidential Information.
Brandon Bodnár
Huh.. Yeah, I meant "if you are already an iphone developer", but I had no idea it was under NDA. I don't remember signing / agreeing to a new one when I downloaded it, but I may have just flown past it. Thanks
Sean Clark Hess
No problem. I think we all fly past that bit of information without really thinking about what we are agreeing too (the evil of EULAs and such). Now, I just assume that everything beta for Apple is NDA. :)
Brandon Bodnár
You do need to be careful with the NDAs. Apple takes them very seriously. I worked at Apple for 9 years and I saw people burn their relationship with Apple by not taking them seriously. I wasn't kidding about "Steve is always watching". Jobs is noted for taking sudden interest in seemingly trivial aspects of the company.
TechZen
A: 

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.

St3fan
+5  A: 

DTGridView:

http://www.danieltull.co.uk/blog/2009/10/28/dtgridview/

Amorya