API:
- (UIView *)snapshotView
- (UIView *)resizableSnapshotViewFromRect:(CGRect)rect
withCapInsets:(UIEdgeInsets)capInsets
- (BOOL)drawViewHierarchyInRect:(CGRect)rect
效能:
比旧的renderinContext方法更优

DEMO
创建模糊背景
UIGraphicsBeginImageContextWithOptions(image.size,
NULL, 0);
[view drawViewHierarchyInRect:rect];
UIImage *newImage =
UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
lightImage = [newImage applyLightEffect];


网友评论