gpt4 book ai didi

objective-c - 我应该如何用电子邮件发送我自己格式的文件,我应该怎么做才能在我自己的 iOS 5 应用程序中打开它?

转载 作者:行者123 更新时间:2023-11-29 13:30:49 25 4
gpt4 key购买 nike

我正在使用 MIME 类型“application/tfk”发送我的文件,我在我的 Info.plist 中写了这个:

<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>My document</string>
<key>CFBundleTypeExtensions</key>
<array>
<string>tfk</string>
</array>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>application/tfk</string>
</array>
<key>LSHandlerRank</key>
<string>Owner</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSItemContentTypes</key>
<array>
<string>com.dmm.tfk</string>
</array>
</dict>
</array>

但它不起作用。我的应用程序不在邮件应用程序的列表中。我做错了什么?

最佳答案

我相信您也需要申报 UTI。这是关于 Uniform Type Identifiers 的文档.

这是您应该添加的示例:

<key>UTExportedTypeDeclarations</key>
<array>
<dict>
<key>UTTypeConformsTo</key>
<array>
<string></string>
</array>
<key>UTTypeDescription</key>
<string>My document</string>
<key>UTTypeIdentifier</key>
<string>com.dmm.tfk</string>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>tfk</string>
<string>TFK</string>
</array>
<key>public.mime-type</key>
<string>application/tfk</string>
</dict>
</dict>
</array>

不确定这是否是您所需要的全部,但是一旦您开始使用它,它就会将 launchOptions 发送到您的 AppDelegate。文件 URL 将作为 AppDelegateapplication:didFinishLaunchingWithOptions:launchOptions 中的 UIApplicationLaunchOptionsURLKey 键发送。然后,您可以使用以下方法从该 URL 中提取文件数据:NSData dataWithContentsOfURL:。希望对您有所帮助!

关于objective-c - 我应该如何用电子邮件发送我自己格式的文件,我应该怎么做才能在我自己的 iOS 5 应用程序中打开它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11958742/

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