views:

58

answers:

2

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
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
Hi Ravi, that's really great, thanks very much.
disorderdev
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