.ppt
iPhoneメールアプリからファイルを読みたい。私はすでにこのSOの質問を使用してPDFファイルを読み終えました。それは正常に機能しており、メールアプリでメニューを生成するために次のコードを使用しました。
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>PDF Document</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSItemContentTypes</key>
<array>
<string>com.adobe.pdf</string>
</array>
</dict>
</array>
<key>UIFileSharingEnabled</key>
<true/>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>Powerpoint</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSItemContentTypes</key>
<array>
<string>com.microsoft.powerpoint.ppt</string>
</array>
</dict>
</array>
正常に動作しています。私は問題をグーグルで検索しましたが、誰かが.ppt
メールの添付ファイルからファイルを検出する方法を教えてくれるなら、それは役に立ちます。