How to create an image grid? When you click an image, it should open that image.

How to create an image grid, for example, How it happens in the iPad photos application, and on the image click , it should open this image. Can someone give me a link to a tutorial or sample code? Thanx in advance.

+4
source share
1 answer

There are several open source options:

https://github.com/elc/ELCImagePickerController
https://github.com/gdavis/FGallery-iPhone
https://github.com/kolinkrewinkel/KKGridView/
https://github.com/danielctull/DTGridView
https://github.com/samsoffes/sstoolkit (SSCollectionView)

Some of them automatically enlarge the photo, and for others you must implement this part yourself. I personally used FGallery and found it very full-featured, easy to use and stable.

+7
source

All Articles