美文网首页
将图片保存到相册

将图片保存到相册

作者: 江河_ios | 来源:发表于2020-09-27 13:49 被阅读0次

首先要导入Photos.framework库。

- (void)loadImageFinished:(UIImage *)image{
 [[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
  //写入图片到相册
  PHAssetChangeRequest *req =   [PHAssetChangeRequest creationRequestForAssetFromImage:image];
        
        
 } completionHandler:^(BOOL success, NSError * _Nullable error) {
        
     NSLog(@"success = %d, error = %@", success, error);
        
}];}

相关文章

网友评论

      本文标题:将图片保存到相册

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