1

Possible Duplicate:
Select Multiple Images (UIImagePickerController or Photos.app Share UI)

I'm a newbie in iPhone development,the site give me a lot of help. But now, I meet a trouble, I want to select more than one photo in photoalbum, but when I use the UIImagePickerController , I can get just one photo, could you tell me how to select more photos? thank you.

best regards,

ofllm

Community
  • 1
  • 1
ofllm
  • 21
  • 1
  • 4
  • The question is a lot like this one: http://stackoverflow.com/questions/1291270/select-multiple-images-uiimagepickercontroller-or-photos-app-share-ui – Arne Evertsson Mar 03 '10 at 13:19

2 Answers2

3

You'll have to create your own view controller that will list the movies you are currently selecting. Use UIImagePickerController to build up your list one image at a time. There is no multiple selection available in the UIImagePickerController view itself.

Matt Long
  • 24,438
  • 4
  • 73
  • 99