我正在使用此代码从应用程序中的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文件我为文件类型提供了正确的UTI,即"公共内容","公共数据"。这些尿路感染在页面上给出苹果文档。public.data 确认文档文件,但我仍然无法获取文档文件。
根据这一点,您必须使用com.microsoft.word.doc作为文档类型希望它有效。