Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我使用 QLPreviewController 来查看/阅读一些文档,在 UICollectionView 中点击它之后。collectionView 中的单元格有一个 UIImageView,我想在其中显示文档的第一页,如图像。
我怎样才能做到?
尝试规范的方式:
UIGraphicsBeginImageContext(rect); [qlController.view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage * img = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext();
您可以定义rect以选择要转换为图像的视图区域。
rect