How to access Media section (Photo & Movies) directly from NSOpenPanel in Mac OS X application?
问题 I already refered this link iMedia Now i am using NSOpenPanel to open iPhoto library folder. Here is the code which allow to open. int i = 0; NSOpenPanel* openDlg = [NSOpenPanel openPanel]; [openDlg setCanChooseFiles:YES]; [openDlg setAllowedFileTypes:[NSArray arrayWithObjects:@"public.image",@"public.video",nil]]; [openDlg setAllowsMultipleSelection:TRUE]; [openDlg setAllowsOtherFileTypes:NO]; if ( [openDlg runModal] == NSOKButton ) { NSArray *files = [openDlg URLs]; for( i = 0; i < [files