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..??
Asked
Active
Viewed 2,370 times
0
-
see this once http://stackoverflow.com/questions/21280063/how-to-pick-multiple-images-from-uiimagepickercontroller-in-ios – Anbu.Karthik Apr 11 '16 at 05:54
1 Answers
-3
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.

Mahendra
- 8,448
- 3
- 33
- 56