我已经知道如何打开相机胶卷了:
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
[picker setDelegate:self];
[picker setSourceType:UIImagePickerControllerSourceTypePhotoLibrary];
[picker setAllowsEditing:YES];
[self presentModalViewController:picker animated:YES];
但我希望它能直接进入最新图片。它使用iPhone原装相机时会这样做。单击拍摄照片的缩略图时,相机会打开并直接显示。
有可能这样做吗?