Search code examples
iosobjective-cuiimagepickercontroller

select multiple images in imagepickercontroller ios


I have tried lot of third party picker in ios for selecting multiple images/videos. Is there a way to select multiple images/videos using imagepickercontroller without using third party imagepicker..??


Solution

  • You can do following

    • Fetch all the images/video (whatever you want) from device.
    • Create a view controller lets say MyGalleryVC.
    • In MyGalleryVC, you need to display all the fetched images/videos in either collection view or table view.
    • And finally you can set allowsMultipleSelection property of table view or collection view.
    • Create a delegate method that will give you the selected images/videos.