【1】【IOS】 截图

时间:2014-07-10 10:59:38   收藏:0   阅读:409
1 UIGraphicsBeginImageContext(self.view.bounds.size);// 设置上下文
2 
3 [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];4 
5 UIImage *image=UIGraphicsGetImageFromCurrentImageContext();//从当前上下文中获取image
6 
7 UIGraphicsEndImageContext();//关闭上下文
8 
9 UIImageWriteToSavedPhotosAlbum(image,self, nil, nil);//存到相册

 

【1】【IOS】 截图,布布扣,bubuko.com

原文:http://www.cnblogs.com/shu-l/p/3812065.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!