I was wondering what the best way of selecting photos from iPhoto within a cocoa application? Right now, the open file dialogue doesn't allow me to go into the iPhoto library. How can I allow the user to go into that folder? IKPictureTaker was one option, but it appears that it allows the selection of one picture at a time. I'd like a user to be able to select 1 picture, or many.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Just use NSOpenPanel and set the allowed file types to the public.image UTI:

[panel setAllowedFileTypes:[NSArray arrayWithObject:@"public.image"]];

This will automatically add a Media section and Photos item to the sidebar in the open panel that allows the user to select from their iPhoto library.

Alternatively, you can use Karelia's open-source iMedia Browser.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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