iOS 保存图片到相册
Posted 人生路1/5
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 保存图片到相册相关的知识,希望对你有一定的参考价值。
保存图片到相册
- (IBAction)save_clcik:(UIButton *)sender { if (self.imgView.image==nil) { [SVProgressHUD showWithStatus:@"正在努力加载中..."]; return; } // 将图片写入到相册() UIImageWriteToSavedPhotosAlbum(self.imgView.image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil); } - (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo { if (error) { [SVProgressHUD showErrorWithStatus:@"保存失败!"]; } else { [SVProgressHUD showSuccessWithStatus:@"保存成功!"]; } }
以上是关于iOS 保存图片到相册的主要内容,如果未能解决你的问题,请参考以下文章