我正在使用 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>
但它不工作。我的应用程序不在邮件应用程序的列表中。我究竟做错了什么?