只是先清理一些快速项目:
- 我不想打开和/或预览文档,因为我看到一个常见的答案是指用户这样做的依赖项
- 我不想选择任何其他文件类型。我的应用程序特别想获取一个 powerpoint 文档,然后将其传递给 API 调用
话虽如此,我无法让我的选择器允许我打开一个 PPTX,如下所示:
我已采取以下措施来尝试解决此问题:
我mdls -name kMDItemContentTypeTree test.pptx
针对该文件运行以获取其内容类型。
kMDItemContentTypeTree = (
"org.openxmlformats.presentationml.presentation",
"public.data",
"public.composite-content",
"public.archive",
"public.item",
"org.openxmlformats.presentationml.presentation",
"org.openxmlformats.openxml",
"public.zip-archive",
"public.presentation",
"public.content",
"com.pkware.zip-archive" )
然后我将其添加到我的 info.plist 文件中,如下所示:
<dict>
<key>LSItemContentTypes</key>
<array>
<string>org.openxmlformats.presentationml.presentation</string>
<string>public.data</string>
<string>public.composite-content</string>
<string>public.archive</string>
<string>public.item</string>
<string>org.openxmlformats.presentationml.presentation</string>
<string>org.openxmlformats.openxml</string>
<string>public.zip-archive</string>
<string>public.presentation</string>
<string>public.content</string>
<string>com.pkware.zip-archive</string>
</array>
<key>CFBundleTypeName</key>
<string>PPTX</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
</dict>
然后,我参考了这个Apple 网站来获取用于 powerpoint 的 UTI。
com.microsoft.powerpoint.ppt
最后,我这样设置我的电话:
let powerpointType = "com.microsoft.powerpoint.ppt"
let documentPicker = UIDocumentPickerViewController(documentTypes: [powerpointType],
in: .import)
但是,如初始图像所示,这不允许我选择文件。因此,我希望找到缺失的部分,以便只选择 powerpoint 文件。
** 更新 ** 根据马特的评论,我确实将值添加到我的 plist 中,但仍然无法选择文件。
我还使用pptx
plist & UIDocumentPickerViewController
call 中的扩展进行了测试,但也没有成功。