码迷,mamicode.com
首页 > 其他好文 > 详细

保存照片到系统相册(Photo Album)

时间:2016-05-27 20:12:10      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

actionClick:方法里调用:

UIImageWriteToSavedPhotosAlbum(self.image, self, @selector(image:didFinishSavingWithError:contextInfo:), NULL);

这个时候,我们想知道保存是否成功,所以需要制定回调方法

// 指定回调方法
- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
{
    if(!error){
        NSLog(@"save success");
    }else{
        NSLog(@"save failed");
    }
}

 

保存照片到系统相册(Photo Album)

标签:

原文地址:http://www.cnblogs.com/dzhs/p/5535842.html

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