Reputation: 7900
I am using UIImagePickerController
for get photos from the device and I want to know if there is any way to select multiple photos with this mechanism ?
Upvotes: 12
Views: 15391
Reputation: 334
uiimagepicker only choose one image from photo library so use ELCImagePickerController in palce of uiimagepickercontroller and ELCImagePickerController is woking correct ... I m test this in my Photo collage App
Upvotes: 3
Reputation: 2499
This link has a wonderful tutorial on how to make a custom based UIImagePickerController to select multiple images.
http://www.icodeblog.com/cloning-uiimagepickercontroller-using-the-assets-library-framework/
Upvotes: 3
Reputation: 17478
You have to look at ELCImagePickerController. You can select multiple images with that.
Upvotes: 13
Reputation: 22334
Sadly not, the picker is only for single images or videos. You will need to create your own to simulate the normal photo album.
Upvotes: 16