在最新照片上打开相机胶卷

时间:2013-09-16 09:24:17

标签: ios ios6

我已经知道如何打开相机胶卷了:

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

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

[self presentModalViewController:picker animated:YES];

但我希望它能直接进入最新图片。它使用iPhone原装相机时会这样做。单击拍摄照片的缩略图时,相机会打开并直接显示。

有可能这样做吗?

0 个答案:

没有答案