Sean Clark Hess
Sean Clark Hess

Reputation: 16059

Grid View as demoed in iPad

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

Answers (4)

Piotr Czapla
Piotr Czapla

Reputation: 26532

You should try AQGridView it does what you need. Here are few screens of apps that use this library: app1 app2

Upvotes: 6

Stefan Arentz
Stefan Arentz

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

TechZen
TechZen

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

Related Questions