如何在触摸按钮时打开已保存的照片相册?

时间:2014-07-15 15:09:02

标签: ios ios7

我有一个简单的IOS应用程序,并且有一个功能,用户可以保存当前屏幕的图像,用户截取屏幕截图后,我会通知他们"图像已保存,是否要打开专辑&#34?;如果用户选择是,则打开相册,现在我可以使用以下代码启动“保存照片”相册(这是用户键入“是”按钮时的事件处理程序)

- (IBAction)gotoPhotoAlbum:(id)sender
{
    UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
    [imagePicker.view setFrame:CGRectMake(0, 80, 320, 350)];
    [imagePicker setSourceType:UIImagePickerControllerSourceTypeSavedPhotosAlbum];
    imagePicker.delegate = self;
    [self presentViewController:imagePicker animated:YES completion:nil];
}

问题是,当我点击相册中的照片(缩略图)时,它会返回我的应用程序,让我没有机会查看照片,我想要的是用户可以查看/编辑照片就像他们一样直接打开相册,当他们完成操作后,返回我的应用程序,这可能吗?

0 个答案:

没有答案