美文网首页
UIView截图,清晰版本

UIView截图,清晰版本

作者: Smallwolf_JS | 来源:发表于2019-10-15 11:12 被阅读0次
+ (UIImage *)getImageViewWithView:(UIView *)view{
    UIGraphicsBeginImageContextWithOptions(view.bounds.size, NO, 0.0);
    [view.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return image;
}

相关文章

网友评论

      本文标题:UIView截图,清晰版本

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