在 iOS 设备上,邮件应用程序为附件提供“打开方式...”选项。列出的应用程序已在操作系统中注册了它们的 CFBundleDocumentTypes。通过这个,我必须在我的应用程序上打开 SPSS 文件(.sav 扩展名)。我将如何实现这一目标?
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>.SAV</string>
</array>
<key>CFBundleTypeIconFiles</key>
<array/>
<key>CFBundleTypeName</key>
<string>SPSS</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>LSItemContentTypes</key>
<array/>
谢谢