On Dec 30, 2012, at 12:36 AM, Charles Srstka <cocoa...@charlessoft.com> wrote:

> 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);

Actually, here's a correction; looking at this again, I should have released 
the IconRef after creating the NSImage:

ReleaseIconRef(iconRef);

Otherwise, memory will leak. Sorry about that!

Charles


_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to