我曾经- (BOOL)presentPreviewAnimated:(BOOL)animated;
加载文档,然后我想从文档中截取屏幕截图。所以我尝试
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
currentImage=UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
但它只占用主视图,所以我正在寻找可以告诉我如何获取文档视图层的人。