0
votes

I´m creating an app that access to the Camera roll using ImagePickerController. The app has a buttom and when I tap on it the app should go to the last image saved on the roll. Using that code:

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

the app open the thumbnails and I would like to open a specific image (full screen)

Is possible?

1

1 Answers

0
votes

Image will open in full view only if you want to make edit to it.

Add this line to open in full view before presenting .

[picker setAllowsEditing:YES];

If you wish more function than you have two option.

  1. Use your own custom control.
  2. Add overlay view on UIImagePickerController

Refer this example to create your controls: