0

It is not possible to get photo library from my application when running application in ios5. Is any body have solution for this?

  • 3
    What is te problem you're having with the Photo library? It's a bit unclear from you current question. – rckoenes Nov 04 '11 at 09:23

1 Answers1

0

It works just fine - just call


UIImagePickerController* imagePicker = [[[UIImagePickerController alloc]init]autorelease];

imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;

[imagePicker takePhoto];

TheEye
  • 9,280
  • 2
  • 42
  • 58