1

Do you know some way to show the camera roll in my app with navigation bar, backward, forward, delete controls?? Thankz :D

Undo
  • 25,519
  • 37
  • 106
  • 129
user448986
  • 25
  • 5

1 Answers1

0

You may want to use the UIImagePickerController:

Example:

UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
[self presentModalViewController:picker animated: YES];

Dont forget to implement the delegate protocol.

Here is a link to Apple's docs: http://developer.apple.com/library/ios/#documentation/uikit/reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html

Ric Santos
  • 15,419
  • 6
  • 50
  • 75