Reputation: 340
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
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
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
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