1

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.

Can
  • 536
  • 2
  • 7
  • 22

2 Answers2

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
1

USE ELCImagePickerController used to display more than one asset images.

Vipin
  • 4,718
  • 12
  • 54
  • 81