iOS View快照,View截屏
Posted CodingTomBlog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS View快照,View截屏相关的知识,希望对你有一定的参考价值。
#pragma mark - 屏幕快照 - (UIImage *)convertViewToImage:(UIView *)view { //https://github.com/alskipp/ASScreenRecorder 录屏代码 // 第二个参数表示是否非透明。如果需要显示半透明效果,需传NO,否则YES。第三个参数就是屏幕密度了 UIGraphicsBeginImageContextWithOptions(view.bounds.size,YES,[UIScreen mainScreen].scale); [view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return image; } - (UIImage *)snapsHotView:(UIView *)view { UIGraphicsBeginImageContextWithOptions(view.bounds.size,YES,[UIScreen mainScreen].scale); [view drawViewHierarchyInRect:view.bounds afterScreenUpdates:NO]; UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return image; }
以上是关于iOS View快照,View截屏的主要内容,如果未能解决你的问题,请参考以下文章