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

将图片保存到相册

作者: Mr_滑 | 来源:发表于2023-04-06 14:09 被阅读0次

iOS 11系统之前需要配置Plist 文件,但是iOS 11之后就不需要了!

下面是常用的存储图片到相册的方法验证有效

- (void)loadImageFinished:(UIImage *)image{
    UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), (__bridge void *)self);
}

- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo{
    NSLog(@"image = %@, error = %@, contextInfo = %@", image, error, contextInfo);
}

相关文章

网友评论

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

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