ghiboz
ghiboz

Reputation: 8003

UIImagePickerController with my images

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!!

Upvotes: 3

Views: 317

Answers (2)

fbartho
fbartho

Reputation: 434

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 UITableViews as well as a couple other solutions.

Upvotes: 1

s1mm0t
s1mm0t

Reputation: 6095

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.

Upvotes: 0

Related Questions