我正在使用 QLPreviewController 预览各种文档。 Controller 有一个“ ListView ”选项,它显示 Controller 中所有文档的图像和标题。
如何获取该图像以便将其显示在不同的屏幕上?
我正在尝试制作一个“查看文件”屏幕,其中显示所有文件详细信息和缩略图预览。然后单击缩略图会将用户带到完整的预览。
Best Answer-推荐答案 strong>
在 iOS 中,没有用于获取文件缩略图的 API(如 AppCoda-Image 或 AppCoda-PDF ),但您可以获得像 AppCoda-Pages 、AppCoda-Word 、AppCoda-Keynote 或 AppCoda-Text.
// Create an `UIDocumentInteractionController` with the file URL.
let controller = UIDocumentInteractionController(url: <#URL#>)
// Get icon
_ = controller.icons[0]
这将返回图标而不是缩略图。
关于ios - 如何获取 QuickLook 预览项目的缩略图?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/41104050/
|