Open camera roll on the latest photo

2019-07-28 18:44发布

问题:

I know already how to open the camera roll:

UIImagePickerController *picker = [[UIImagePickerController alloc] init];
[picker setDelegate:self];

[picker setSourceType:UIImagePickerControllerSourceTypePhotoLibrary];
[picker setAllowsEditing:YES];

[self presentModalViewController:picker animated:YES];

But I want it to go directly to the latest picture. It does it when you use the iPhone original camera. When you click on the thumbnail of the taken photo, the camera roll open and display it directly.

Is it possible to do this way?

标签: ios ios6