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!!
I’m developing an app and I wish use the UIImagePickerController but I wish let
Share
The short answer is that that’s not the way
UIImagePickerControlleris 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
UIScrollViewand custom views to do the job. I’ve also seen solutions to the problem that use customUITableViews as well as a couple other solutions.