在我的 iPad 应用程序中,我想要制作一个截图的 UIView 占据了屏幕的很大一部分。不幸的是,子视图是相当深的嵌套,所以它需要很长的截图和动画页卷曲后。
有没有比“通常”更快的方法?
UIGraphicsBeginImageContext(self.bounds.size);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
如果可能的话,我希望避免缓存或重构视图。