gpt4 book ai didi

ios - 使用我的APP打开PDF文件

转载 作者:行者123 更新时间:2023-12-03 19:49:14 27 4
gpt4 key购买 nike

我正在尝试添加一个选项,以便在按下 PDF 文件的共享按钮时,它会建议使用我的应用程序打开。像这样:

enter image description here

目前我的 plist 文件具有 CFBundleDocumentTypesUTImportedTypeDeclarations 属性,如下所示:

enter image description here

enter image description here

我关注了this tutorial但没有运气。我的应用程序没有显示在列表中。我错过了什么?

最佳答案

您不应该拥有 PDF 的 UTImportedTypeDeclarations。 PDF 是标准提供的 UTI,因此您不应声明自己的非标准 UTI。您只需要 CFBundleDocumentTypes 部分包含 PDF 文件的正确 UTI,而不是您虚构的部分。

<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>PDF</string>
<key>LSHandlerRank</key>
<string>Alertnate</string>
<key>LSItemContentTypes</key>
<array>
<string>com.adobe.pdf</string>
</array>
</dict>
</array>

关于ios - 使用我的APP打开PDF文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40463198/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com