Usman khan
Usman khan

Reputation: 340

iPad: Control for Creating an Image Gallery

I want to use an image gallery in an iPad app. There should be multiple thumbnails in the image gallery and when I click one that image will display.

I could not find any control to place the thumbnails.

Usmna Khan Iphone Developer

Upvotes: 2

Views: 1867

Answers (4)

Kirby T
Kirby T

Reputation: 156

I have a project on github that can help get you started. It's called KTPhotoBrowser and it does exactly what you describe, displays a grid of thumbnail images and displays the image when tapped. The project is at:

https://github.com/kirbyt/KTPhotoBrowser

Upvotes: 1

TechZen
TechZen

Reputation: 64428

An image gallery is really nothing but a tableview in which each row displays several images side by side. By using a custom cell without borders, you create the illusion of a grid of images.

Upvotes: 1

Raxit
Raxit

Reputation: 824

There is no direct control available in iPhone SDK. You need to write your own code to make Image Gallery or take the code from other resources. But i will suggest you should try to write your own code.

Cheers, Raxit

Upvotes: 1

S.P.
S.P.

Reputation: 5435

You can use Three20

Upvotes: 1

Related Questions