截屏

作者: CoderCurtis | 来源:发表于2019-01-23 15:04 被阅读9次
//开启一个和图片相关的图形上下文
    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