Hi all! I'm developing an app and I wish use the UIImagePickerController but I wish let the user to choose some images saved into my app, not the photolibrary.. it's possible to do this?? thanks in advance!!
No you can't. You can either select from the photo library or take a new picture. This is probably one of the most annoying things I've come across in the API. If you have to have this functionality, you will have to find an open source version or develop your own UIImagePickerController. I have used this with some success.
The short answer is that that's not the way UIImagePickerController
is designed, unfortunately. I've seen several projects have to reimplement this feature in their own (different) ways before moving forwards.
As a good first pass tutorial at this problem I would recommend this site
It relies on a simple UIScrollView
and custom views to do the job. I've also seen solutions to the problem that use custom UITableView
s as well as a couple other solutions.