截屏
//开启一个和图片相关的图形上下文
UIGraphicsBeginImageContextWithOptions(self.shotView.bounds.size, NO, 0.0);
//获取刚刚开启的上下文
CGContextRef ref = UIGraphicsGetCurrentContext();
//进行截图 把当前控制器view的显示效果绘制到图形上下文中 / 截取shotView
[self.shotView.layer renderInContext:ref];
//从上下文中获取图片
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
//关闭图形上下文
UIGraphicsEndImageContext();
self.imgView.image = image;
Simulator Screen Shot - iPhone 8 Plus - 2019-01-23 at 15.02.16.png
link
本文标题:截屏
本文链接:https://www.haomeiwen.com/subject/wgbjjqtx.html
网友评论