Open camera roll on the latest photo

浪尽此生 提交于 2019-12-11 11:14:46

问题


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?

来源:https://stackoverflow.com/questions/18824535/open-camera-roll-on-the-latest-photo

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!