美文网首页
UISnapshotting(快照/截图)

UISnapshotting(快照/截图)

作者: liboxiang | 来源:发表于2018-12-06 14:23 被阅读18次

API:

- (UIView *)snapshotView
- (UIView *)resizableSnapshotViewFromRect:(CGRect)rect
            withCapInsets:(UIEdgeInsets)capInsets
- (BOOL)drawViewHierarchyInRect:(CGRect)rect

效能:

比旧的renderinContext方法更优


Snip20181206_2.png

DEMO

创建模糊背景

UIGraphicsBeginImageContextWithOptions(image.size,
NULL, 0);
[view drawViewHierarchyInRect:rect];
UIImage *newImage =
UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
lightImage = [newImage applyLightEffect];
Snip20181206_3.png Snip20181206_4.png

相关文章

网友评论

      本文标题:UISnapshotting(快照/截图)

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