Reputation: 65
hey I'm new in iOS app developing world...
I had open the gallery and selected only one image and displayed on image view.
Now I want to select multiple image from Gallery.
So my question is
How should I select multiple image from Gallery in iOS and display on UIImageView???
Upvotes: 1
Views: 2377
Reputation: 9589
Generally you should not pick multiple images from iOS native picker so
from UIImagePickerController
you can get only one picture. If you need to pick more you need a custom image picker, such as ELCImagePickerController. It works well! You can download it here.
Upvotes: 0
Reputation: 3734
UIImagePickerController
doesn't support multiple selection by default, but you can use libraries like QBImagePicker
to achieve that.
Upvotes: 2