How to filter the NSOpenPanel with "Recommended Applications"
How to filter the NSOpenPanel with "Recommended Applications"
- Subject: How to filter the NSOpenPanel with "Recommended Applications"
- From: appleBoy chen <email@hidden>
- Date: Thu, 27 May 2010 10:55:51 +0800
Hi All,
I want to show the Panel like Finder's "Choose Application" to let user
slect one application to open with the file.
Follow is my code:
NSOpenPanel *openPanel = [NSOpenPanel openPanel];
[openPanel setCanChooseDirectories:NO];
[openPanel setCanChooseFiles:YES];
[openPanel setAllowsMultipleSelection:NO];
if([openPanel runModalForTypes:[NSArray arrayWithObjects:@"app",nil]] ==
NSOKButton)
{
...
}
And, I want to only show the supported application for the associated file.
Like Finder's "Choose Application" Panel, it can set Eanble to "Recommended
Applications" to filter the applications. the NSOpenPanel can support it?
or i must usr another solution. thanks for any reply.
best regards
Kakaxi
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden