作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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 将作为 AppDelegate
中 application:didFinishLaunchingWithOptions:
上 launchOptions
中的 UIApplicationLaunchOptionsURLKey
键发送。然后,您可以使用以下方法从该 URL 中提取文件数据:NSData dataWithContentsOfURL:
。希望对您有所帮助!
关于objective-c - 我应该如何用电子邮件发送我自己格式的文件,我应该怎么做才能在我自己的 iOS 5 应用程序中打开它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11958742/
我是一名优秀的程序员,十分优秀!