我从 uiview 创建万花筒效果。它使用子图层和子图层蒙版的阁楼。然后我使用下面的代码从 uiview 渲染 uiimage。
UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.opaque, 0.0);
[view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
渲染图像如下:
问题是渲染图像不渲染蒙版效果。