Goal:
- Allow user to select one or more images from his photo library.
- Get an NSArray of selected UIImage objects or copy the files to a folder like /Documents.
singingAtom has given a great answer as to how to use UIImagePickerController, but it returns only one image. How could this be extended such that the user can pick multiple images at once?
You cant do it with the UIImagePickerController, instead you will have to use ALAssetLibrary in order to get the users photos and display them, then create your own controls to allow the user to pick more than one image…Here is a ref ALASsetLibrary