我使用 UIImageWriteToSavedPhotosAlbum 将照片保存到相册。但是如果照片太大,完成保存需要很长时间。所以我需要一个可以取消保存过程的取消按钮。但似乎没有办法做到这一点。有人知道该怎么做吗?
UIImage *tempImage = [[UIImage alloc] initWithContentsOfFile:pPath]; UIImageWriteToSavedPhotosAlbum(tempImage, self, @selector(finishedSavingImage:didFinishSavingWithError:contextInfo:), [文件保留]);