美文网首页
iOS图片保存到相册的方法

iOS图片保存到相册的方法

作者: 杯中怎可无酒 | 来源:发表于2019-07-27 16:17 被阅读0次

    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) {
            
        }]
    
    

    相关文章

      网友评论

          本文标题:iOS图片保存到相册的方法

          本文链接:https://www.haomeiwen.com/subject/zuyerctx.html