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

iOS 图片保存手机相册

时间:2014-11-28 18:35:33      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:ios 图片保存手机相册

UIImageWriteToSavedPhotosAlbum(app.erweiImg, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);


- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo

{

    UIAlertView *alert;

    if (error == nil)

    {

        alert = [[[UIAlertView alloc]initWithTitle:@"温馨提示" message:@"保存成功" delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil, nil]autorelease];

                [alert show];

                return;

    }

    else

    {

        alert = [[[UIAlertView alloc]initWithTitle:@"保存失败" message:@"请打开 设置-隐私-照片 来进行设置" delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil, nil]autorelease];

                [alert show];

                return;

    }

}


iOS 图片保存手机相册

标签:ios 图片保存手机相册

原文地址:http://liumenglin.blog.51cto.com/7734570/1584033

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