截屏

2019-01-23  本文已影响9人  CoderCurtis
//开启一个和图片相关的图形上下文
    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

上一篇下一篇

猜你喜欢

热点阅读