YosiFZ
YosiFZ

Reputation: 7900

UIImagePickerController multiple select

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

Answers (4)

Kuldeep Singh
Kuldeep Singh

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

Dip Dhingani
Dip Dhingani

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

Ilanchezhian
Ilanchezhian

Reputation: 17478

You have to look at ELCImagePickerController. You can select multiple images with that.

Upvotes: 13

Simon Lee
Simon Lee

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

Related Questions