黑马程序员技术交流社区

标题: iphone程序中实现截屏的一种方法 [打印本页]

作者: wanyiyuan    时间: 2014-9-26 15:35
标题: iphone程序中实现截屏的一种方法
  1. 在iphone程序中实现截屏的一种方法:
  2. //导入头文件
  3. #import QuartzCore/QuartzCore.h
  4. //将整个self.view大小的图层形式创建一张图片image UIGraphicsBeginImageContext(self.view.bounds.size);
  5. [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
  6. UIImage*image=UIGraphicsGetImageFromCurrentImageContext();
  7. UIGraphicsEndImageContext();
  8. //然后将该图片保存到图片图
  9. UIImageWriteToSavedPhotosAlbum(image,self,nil,nil);
复制代码








欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2