我正在使用此代码在我的应用程序中从 iCloud 获取文档。
let documentPicker: UIDocumentPickerViewController = UIDocumentPickerViewController(documentTypes: ["public.content","public.data"], in: UIDocumentPickerMode.import)
documentPicker.delegate = self
documentPicker.modalPresentationStyle = UIModalPresentationStyle.fullScreen
if let popoverPresentationController = documentPicker.popoverPresentationController {
popoverPresentationController.sourceView = sender
}
self.present(documentPicker, animated: true, completion: nil)
我想要来自 iCloud 的三种文档,即 .pdf、.doc、.docx。我能够从 icloud 获取 PDF 文件,但不能获取 .doc 文件,我正在为文件类型(即“public.content”、“public.data”)提供适当的 UTI。这些 UTI 在 苹果文档页面上给出。public.data 确认文档文件,但我仍然无法获取文档文件。