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.image或public.jpeg它不起作用。
你能告訴我的錯誤在哪裏嗎?謝謝你的答案。
http://stackoverflow.com/questions/9197757/why-cant-i-register-my-ios-application-to-handle-the-image-file-type - 看起來像你不能真正打開圖片 – Srikanth