截图调用drawRect

时间:2013-08-29 04:57:07

标签: ios uiview screenshot drawrect

我正在截取当前视图的截图:

UIGraphicsBeginImageContextWithOptions(self.bounds.size, NO, 0);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
self.bitmapImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

在某些情况下,这会调用-drawRect:,但并非总是如此。这是为什么?

P.S。这似乎是一种错误行为。

0 个答案:

没有答案