2011-07-16 66 views
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> 

回答

34

發現它不工作:public.comma-separated-values-text

+1

蘋果的常數'kUTTypeCommaSeparatedText'。 – Thecafremo

相關問題