iOSデバイスでは、メールアプリは添付ファイル用の「OpenIn...」オプションを提供します。リストされているアプリは、CFBundleDocumentTypesをOSに登録しています。これにより、アプリで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/>
ありがとう