博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIImageWriteToSavedPhotosAlbum将应用中的图片保存到用户iPhone或者iTouch的相册中
阅读量:5090 次
发布时间:2019-06-13

本文共 867 字,大约阅读时间需要 2 分钟。

- (void)savePicToPhotoes

{

    UIGraphicsBeginImageContext(self.view.bounds.size);

    CGContextRef ref = UIGraphicsGetCurrentContext();

    [_board.layer renderInContext:ref];

    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();

    UIImageWriteToSavedPhotosAlbum(img, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);

}

#pragma mark 显示提示框

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

    //创建alert

    UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"图片已保存到相册" message:nil preferredStyle:UIAlertControllerStyleAlert];

    //创建action

    UIAlertAction *action = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:nil];

    [alert addAction:action];

    [self presentViewController:alert animated:YES completion:nil];

}

 

转载于:https://www.cnblogs.com/ITliufei/p/5753128.html

你可能感兴趣的文章
cms STW 的两个阶段
查看>>
bestcoder#45 1002 求区间的逆序数 树状数组
查看>>
Js操作表格-对表格单元格的添加删除修改
查看>>
[AtCoder][ARC082]Sandglass 题解
查看>>
font-face跨域办法
查看>>
Porsche Piwis Tester 2 Online Coding Guide
查看>>
vue笔记3——双向绑定
查看>>
记一次前端笔试
查看>>
Nginx的启动、停止与重启
查看>>
Windows Live Writer教程及代码高亮工具
查看>>
Android中使用AIDL时的跨进程回调—Server回调Client
查看>>
myBati初学
查看>>
java 内存调试 mat
查看>>
函数定义,使用
查看>>
javascript数据结构之顺序表
查看>>
XMLDocument
查看>>
Codeforces Round #302 (Div. 1)
查看>>
另辟蹊径:vue单页面,多路由,前进刷新,后退不刷新
查看>>
CSS3阴影 box-shadow的使用和技巧总结
查看>>
vue内如何引入阿里图标
查看>>