码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 保存图片到相册

时间:2016-03-03 09:05:47      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

 

保存图片到相册

 

- (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 保存图片到相册

标签:

原文地址:http://www.cnblogs.com/kinghx/p/5237232.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!