Is it possible to get all photos in an array or something from iPhone photo library ? UIImagePickerController allows to choose only one picture at a time.
Asked
Active
Viewed 1,297 times
2 Answers
3
Call ALAssetsLibrary
's -enumerateGroupsWithTypes:usingBlock:failureBlock:
to enumerate one or more assets groups and then enumerate the assets (photos) in each groups with -[ALAssetGroup enumerateAssetsUsingBlock:]
. The documentation has all the details.

Ole Begemann
- 135,006
- 31
- 278
- 256