1

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

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

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

[self presentModalViewController:picker animated:YES];

但我希望它直接转到最新图片。当您使用 iPhone 原装相机时,它会这样做。当您单击拍摄照片的缩略图时,相机胶卷将打开并直接显示。

有可能这样做吗?

4

0 回答 0