美文网首页
截屏方法

截屏方法

作者: 欲速则不达 | 来源:发表于2017-03-22 15:27 被阅读11次
    • (UIImage *)captureScreen
      {
      UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow];
      CGRect rect = [keyWindow bounds];
      UIGraphicsBeginImageContext(rect.size);
      CGContextRef context = UIGraphicsGetCurrentContext();
      [keyWindow.layer renderInContext:context];
      UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
      UIGraphicsEndImageContext();
      return img;
      }

    相关文章

      网友评论

          本文标题:截屏方法

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