2012-12-11 59 views
3

我試圖將我的iPhone應用程序關聯到打開圖像文件,如jpeg和png。我這樣做:iPhone:圖像文件擴展名不關聯到我的應用程序

<key>CFBundleDocumentTypes</key> 
<array> 
    <dict> 
     <key>CFBundleTypeRole</key> 
     <string>Viewer</string> 
     <key>LSItemContentTypes</key> 
     <array> 
      <string>public.image</string> 
     </array> 
    </dict> 
</array> 

但是這種解決方案不起作用。如果我將public.image替換爲,例如public.objective-c-source我的應用程序開始打開objective-c源代碼。但是當我使用public.imagepublic.jpeg它不起作用。

你能告訴我的錯誤在哪裏嗎?謝謝你的答案。

+0

http://stackoverflow.com/questions/9197757/why-cant-i-register-my-ios-application-to-handle-the-image-file-type - 看起來像你不能真正打開圖片 – Srikanth

回答

1

按照此question in apple developer forum(您需要登錄到devforums.apple.com查看此鏈接),這是不可能的。之所以提到有如下,

不允許的,這意味着你將高插孔 的iOS相機&照片應用程序的默認行爲。註冊一個適用於您的應用的文件類型。

相關問題