微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

UIDocumentPickerViewController 中不提供 Swift PDF 文件,但可用于使用 xcode 模拟器的文件

如何解决UIDocumentPickerViewController 中不提供 Swift PDF 文件,但可用于使用 xcode 模拟器的文件

我想在 xcode 模拟器中导入 pdf 文件,但它不能从 UIDocumentPickerViewController 中获得,只能从文件应用中获得。

文件应用:

enter image description here

来自 UIDocumentPickerViewController 的文件

enter image description here

我的代码

let documentPicker = UIDocumentPickerViewController(documentTypes: [kUTTypeFolder as String],in: .open)
    documentPicker.delegate = self
    self.present(documentPicker,animated: true,completion: nil)

解决方法

请检查模拟器文件的扩展名。

对于 .pdf、.doc、.docx。

import MobileCoreServices

let menu = UIDocumentPickerViewController(documentTypes: ["com.microsoft.word.doc","org.openxmlformats.wordprocessingml.document",kUTTypePDF as String],in: UIDocumentPickerMode.import) 
menu.delegate = self 
self.present(menu,animated: true,completion: nil)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。