My application uses the following NSApplicationDelegate function.

- (void)application:(NSApplication*)sender openFiles:(NSArray*)filenames;

I want to use this function to enable the user to drag and drop image files onto the application icon in the dock.

How do I have to define certain file types in my plist file to restrict them to be images? I found out the structure has to look something like this.

// plist file contents taken from Preview.app
[...]
<key>CFBundleDocumentTypes</key>
<array>
    <dict>
        <key>CFBundleTypeIconFile</key>
        <string>jpeg.icns</string>
        <key>CFBundleTypeRole</key>
        <string>Viewer</string>
        <key>LSIsAppleDefaultForType</key>
        <true/>
        <key>LSItemContentTypes</key>
        <array>
            <string>public.jpeg</string>
        </array>
        <key>NSDocumentClass</key>
        <string>PVDocument</string>
    </dict>
</array>

I added it to the plist file but it does not work. A popup window shows the following error message.

The document "test.jpg" could not be opened. MyApp cannot open files in the "JPEG image" format.

Further, I read in the documentation that there is public.image which would be what I want to define.

Meanwhile, I found out that the plist file only contains the key CFBundleDocumentTypes if I create a Cocoa Application with the option "Create document-based application.". Can you please clarify what dependencies exist for the option?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 2 down vote accepted
    <key>CFBundleDocumentTypes</key>
    <array>
        <dict>
            <key>CFBundleTypeExtensions</key>
            <array>
                <string>png</string>
                <string>jpg</string>
                            ... add as many types as you need
            </array>
                    ... other keys
        </dict>
    </array>

Update: The CFBundleDocumentTypes key is deprecated in Mac OS X v10.5. The new key LSItemContentTypes should be used instead. The items are UTI strings:

<key>LSItemContentTypes</key>
<array>
    <string>public.png</string>
</array>
link|improve this answer
Two questions: (1) Are the types case-sensitive; in other words: do I need to add "PNG" and "JPG" and mixed variations as well? (2) Do you know why they do not use the UTI scheme (reverse DNS) here? – JJD Sep 6 '11 at 23:48
1  
Sorry, the information was outdated. CFBundleDocumentTypes still works, but has been deprecated. (1) Is is case insensitive (2) See the update. – Davyd Sep 7 '11 at 2:42
Same error message. The dict element only contains CFBundleTypeRole and CFBundleTypeExtensions with values as suggested - but still it does not work. – JJD Sep 7 '11 at 9:26
Meanwhile, I created a new clean project and edited the plist as you suggest. It works. So the problem must be somewhere else .-( – JJD Sep 7 '11 at 11:10
The difference may be if MyApp is a document based application, but the new clean project is not. I see you use PVDocument class in you plist. In this case you do not need to implement [NSApplicationDelegate application: openFiles:], but [NSDocument readFromFileWrapper: ofType: error:] in your PVDocument subclass. – Davyd Sep 7 '11 at 11:35
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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