美文网首页
学习笔记-保存图片

学习笔记-保存图片

作者: 听雨花春风 | 来源:发表于2016-05-26 14:49 被阅读54次

    保存图片

    - (IBAction)saveButton:(UIButton *)sender {
        //将图片写入相册
        UIImageWriteToSavedPhotosAlbum(self.imageView.image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
    
    }
    - (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
    {
        if (error) {
            [SVProgressHUD showErrorWithStatus:@"保存失败!"];
        } else {
            [SVProgressHUD showSuccessWithStatus:@"保存成功!"];
        }
    }
    
    

    相关文章

      网友评论

          本文标题:学习笔记-保存图片

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