我正在使用UIDocumentMenuViewController
来挑选文件。我想限制用户只选择 .pdf 和 .docx 文件。
我知道我只能允许这样的 PDF。
UIDocumentMenuViewController(documentTypes: [String(kUTTypePDF)], in: .import)
但是我如何也包括.docx
类型?
我正在使用UIDocumentMenuViewController
来挑选文件。我想限制用户只选择 .pdf 和 .docx 文件。
我知道我只能允许这样的 PDF。
UIDocumentMenuViewController(documentTypes: [String(kUTTypePDF)], in: .import)
但是我如何也包括.docx
类型?