Reputation: 36003
I am showing a UIImagePickerController in an app that just works with videos. So, it is nonsense to show pictures to users.
I have changed all properties I see on the controller but the picker shows like the next picture.
Two questions:
thanks in advance.
Upvotes: 1
Views: 2387
Reputation: 1
Not sure if this helps but to access the camera roll directly you just need to set your UIImagePickerController
source like this:
picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
Upvotes: 0
Reputation: 706
You can probably use this and customize to fit your needs.
http://www.icodeblog.com/cloning-uiimagepickercontroller-using-the-assets-library-framework/
I found some issues with it, mostly that it takes a while to load on a device when there are 200+ images. I have not dug into to much, but this might be a start for you.
Upvotes: 2