当前位置:  开发笔记 > 编程语言 > 正文

为什么UIDocumentPickerViewController不能选择PDF?

如何解决《为什么UIDocumentPickerViewController不能选择PDF?》经验,为你挑选了2个好方法。

UIDocumentPickerViewController在导入模式下使用,它在iCloud和Dropbox上显示PDF.然而,他们都是灰色的,我无法选择它们.我究竟做错了什么?



1> Prerak Sola..:

您需要提供允许用户选择的文档类型。

let docTypes = [
        "com.adobe.pdf"
    ]

let docViewCtlr = UIDocumentMenuViewController(documentTypes: docTypes, in: .import)



2> Alexandros..:

第一

import MobileCoreServices

现在您可以访问新值,例如

String(kUTTypePDF)

最后,在您的Document View Controller中

let importMenu = UIDocumentMenuViewController(documentTypes: [String(kUTTypePDF)], in: .import)

请享用

推荐阅读
Life一切安好
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有