13
如何編寫我的.plist文件的CFBundleDocumentTypes屬性,以允許應用程序顯示在其他應用程序的「打開在...」對話框中?內容類型/ UTI在應用程序中打開CSV
那是我的,但
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeIconFiles</key>
<array/>
<key>CFBundleTypeName</key>
<string>Readings</string>
<key>LSItemContentTypes</key>
<array>
<string>text.csv</string>
</array>
</dict>
</array>
蘋果的常數'kUTTypeCommaSeparatedText'。 – Thecafremo