11

I am looking for a simple picture gallery for iPhone (photo viewer). I was using EasyGallery on iOS 4 and I am having some issues with this gallery under iOS 5. The Gallery from Three20 is too complex for me and has a lot of Features I do not need (loading pictures from the internet -> I just need support for local pictures). I need to show pictures from the app bundle, not from the photo library.

1) EasyGallery was working under iOS 4, but not under iOS 5. If someone has chaged its source code so that it is now working with iOS 5, please poste your code here.

2) FGallery does not work when the view is presented modally. And that's my case. So, if someone has adapted the source code from FGallery to work modally, please also poste your code here.

I've tried to change the source code from 1 and 2 myself, but I did not have success. Does someone know a simple ready to use image gallery for the iPhone?

Thanks in advance

jcdmb
  • 3,016
  • 5
  • 38
  • 53

4 Answers4

17

FGallery is quite good. The test application was a little buggy when I tried last time, and I had some issues customizing the look, but yes, it is simple and readily usable.

https://github.com/gdavis/FGallery-iPhone

barley
  • 4,403
  • 25
  • 28
  • Thanks barley. I've spent the last hours trying to use the FGallery and it works very well when you have a navigation controller. But I need to present the view modally, and FGallery dows not work whe it is presented modally. Very weird actually. I've spent hours changing the source code but I had no success. Thanks for your clue anyway ;) – jcdmb Jan 21 '12 at 13:15
16

MWPhotoBrowser

KTPhotoBrowser

EGOPhotoViewer

I've tried all of them, and find they are similar (as they are replicating Apple's one), all 3 load images asynchronously, with caching.

gotomanners
  • 7,808
  • 1
  • 24
  • 39
vk.edward.li
  • 1,899
  • 16
  • 22
  • Why -ve vote for this answer? Is it just because he posted only project names? – Sagar Jan 25 '12 at 10:06
  • 3
    `Does someone know a simple ready to use image gallery for the iPhone?` I thought I was answering the question LOL? – vk.edward.li Jan 25 '12 at 12:36
  • If SO would add FB kind of 'Like' button (instead of 'great comment') then you would have lots of likes. – Sagar Jan 27 '12 at 04:28
  • 2
    But still it would be useful with some comments. Why should we really use these. Do you have any experiences with any of these? – Johan Karlsson Apr 03 '12 at 13:27
  • I've tried all of them, and find they are similar (as they are replicating Apple's one), all 3 load images asynchronously, with caching. – vk.edward.li Apr 05 '12 at 03:11
3
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentModalViewController:picker animated:YES];
[picker release];

and see delegate methods here

Igor Bidiniuc
  • 1,540
  • 1
  • 16
  • 27
1

Check out this custom photo gallery Video Demo: http://screencast.com/t/7ixTAAWGtt

rptwsthi
  • 10,094
  • 10
  • 68
  • 109
Joey
  • 525
  • 1
  • 6
  • 16