在我的应用程序中,我在使用QLPreviewController查看/读取某些文档后,在UICollectionView中点击它。集合视图中的单元格有一个UIImageView,我想在其中显示文档的第一页,如图像。
我该怎么做?
答案 0 :(得分:2)
尝试规范方式:
UIGraphicsBeginImageContext(rect);
[qlController.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
您可以定义rect
以选择要转换为图像的视图区域。