我正在使用简单的代码捕获UIView,它在iPad 2和原始iPad上运行得非常漂亮。但它在iPad 3上的速度非常缓慢。我知道我正在推动更多的像素,但渲染性能简直是不可接受的。
UIGraphicsBeginImageContextWithOptions(self.bounds.size, NO, 0.0);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
请帮助我提高iPad 3上渲染UIView的速度。
感谢。