美文网首页
IOS普通截图

IOS普通截图

作者: 我是明明哥 | 来源:发表于2017-07-11 18:03 被阅读8次
    //这个例子是直接截取的viewController
    UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, false, UIScreen.main.scale)
    self.view.layer.render(in: UIGraphicsGetCurrentContext()!)
    let image = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()
    

    相关文章

      网友评论

          本文标题:IOS普通截图

          本文链接:https://www.haomeiwen.com/subject/kzvmhxtx.html