Is there a way to allow users to select multiple photos at once from the camera roll like the WiFiPhoto app does?
A:
seems it's impossible, please check here Select Multiple Images (UIImagePickerController or Photos.app Share UI)
disorderdev
2010-08-25 03:08:52
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
2010-08-27 07:30:54
Hi Ravi, that's really great, thanks very much.
disorderdev
2010-09-01 07:10:59
A:
Ravi:
I thought about the same solution as you in first place.. However, I doubt that it will work in a complete scene. How do you compute the position if user scroll up/down the picker's view? I think you can not really tell which picture one has clicked on based on the position once the view is scrolled.
Am I missing something?
/Roland
Roland
2010-10-20 19:32:42