Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem registering image file types to my application. I tried adding the code below to my plist but nothing happens.

<key>CFBundleDocumentTypes</key>
    <array>
        <dict>
            <key>CFBundleTypeName</key>
            <string>Scary Bug Document</string>
            <key>LSHandlerRank</key>
            <string>Alternate</string>
            <key>CFBundleTypeRole</key>
            <string>None</string>
            <key>LSItemContentTypes</key>
            <array>
                <string>public.image</string>
            </array>
        </dict>
    </array>

I noticed that I can register for other file types, such as text (changing the public.image to public.text) but it just won't work with images (the "Open In .." menu is not showing my app).

What could be causing this, and how could I fix it?

share|improve this question

4 Answers

up vote 4 down vote accepted

After doing a bit of research it seems that is not possible to register the app for images. Thanks for your answers.

share|improve this answer
do you have any references for your research.. it would be great.. – samfisher Feb 10 '12 at 14:19
I posted a question on the apple developer forums ... :) you can check it out link – Artanis Feb 10 '12 at 14:23
you meant "search it out" not "check it out" otherwise you would have provided a link atleast.. :( – samfisher Feb 10 '12 at 14:26
Google Drive and Houzz apps are able to open jpg's so there is definitely a way somehow. – zambono Mar 16 at 13:20

Try:

<key>CFBundleDocumentTypes</key>
    <array>
        <dict>
            <key>CFBundleTypeName</key>
            <string>Scary Bug Document</string>
            <key>LSHandlerRank</key>
            <string>Alternate</string>
            <key>CFBundleTypeRole</key>
            <string>None</string>
            <key>LSItemContentTypes</key>
            <array>
                <string>public.png</string>
                <string>public.jpg</string>
            </array>
        </dict>
    </array>

Also, see this other answer on StackOverflow

share|improve this answer
that doesn't work – Artanis Feb 8 '12 at 18:29

public.image is an abstract type, try registering for public.png or public.jpeg etc

share|improve this answer
i tried those too but still no luck ... and by the way it should work with public.image as it works for public.text but I am missing something – Artanis Feb 8 '12 at 18:29

OS will not allow you to open images in your app. I also tried myself a lot of permutation & combination, and confirmed from a few more posts in Apple Support.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.