Is there a way to allow users to select multiple photos at once from the camera roll like the WiFiPhoto app does?
Asked
Active
Viewed 4,162 times
2 Answers
0
seems it's impossible, please check here Select Multiple Images (UIImagePickerController or Photos.app Share UI)

Community
- 1
- 1

disorderdev
- 1,458
- 1
- 14
- 28
-
Hi disorderdev, Thanks for caring to reply. I somehow got that done. Not a straight forward way but here is how it goes.. Once you show the image picker, place a transparent view over that. as soon as the user clicks on an image, note down the position of the click and pass on the touch event so that the imagepickerDidFinishPicking method gets called. Save that image and place some checkmark kind of image over the selected image. You dismiss the picker only on clicking done button. – Ravi Aug 27 '10 at 07:30