Re: Finder Source List Icons
Re: Finder Source List Icons
- Subject: Re: Finder Source List Icons
- From: Charles Srstka <email@hidden>
- Date: Sun, 30 Dec 2012 00:36:59 -0600
On Dec 29, 2012, at 10:46 PM, koko <email@hidden> wrote:
> Are the icons in the Finders Source List available to developer apps or does the developer have to capture and photoshop them?
The icons for the items that are currently in the source list can be obtained like this:
LSSharedFileListRef list = LSSharedFileListCreate(kCFAllocatorDefault, kLSSharedFileListFavoriteItems, NULL);
NSArray *items = CFBridgingRelease(LSSharedFileListCopySnapshot(list, NULL));
for (id eachItem in items) {
IconRef iconRef = LSSharedFileListItemCopyIconRef((__bridge LSSharedFileListItemRef)eachItem);
NSImage *iconImage = [[NSImage alloc] initWithIconRef:iconRef];
// do something with the image
}
CFRelease(list);
Charles
_______________________________________________
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