plan 1 此种方法失败几率很高
UIImageWriteToSavedPhotosAlbum(ImageView.image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
plan 2 此种方法是同步操作,需要等待存储过程完成
NSError *error = nil;
[[PHPhotoLibrary sharedPhotoLibrary] performChangesAndWait:^{
[PHAssetChangeRequest creationRequestForAssetFromImage:cell.adImageView.image];
} error:&error];
plan 3 此方法是异步操作,如果完成后需要别的操作可能会出现问题,需要额外注意
[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
} completionHandler:^(BOOL success, NSError * _Nullable error) {
}]
网友评论