Re: Getting the Generic Hard Disk Icon?
Re: Getting the Generic Hard Disk Icon?
- Subject: Re: Getting the Generic Hard Disk Icon?
- From: Jean-Daniel Dupas <email@hidden>
- Date: Fri, 27 Mar 2009 14:58:50 +0100
In fact, a cleaner way would be to do this:
NSImage *picture = [[NSWorkspace sharedWorkspace]
iconForFileType:NSFileTypeForHFSTypeCode(kGenericHardDiskIcon)];
Le 27 mars 09 à 14:30, Mike Glass a écrit :
Try this:
NSString *codeStr = @"hdsk";
OSType code = UTGetOSTypeFromString((CFStringRef)codeStr);
NSImage *picture = [[NSWorkspace sharedWorkspace]
iconForFileType:NSFileTypeForHFSTypeCode(code)];
I just happened to be in Apple's IconCollection sample code
yesterday, so this is pulled pretty much directly from there. Hope
it helps!
On Mar 27, 2009, at 6:58 AM, Dave wrote:
Hi All,
Where can I get the Icon for the standard Internal Hard Disk Icon?
I've looked in /System/Library/CoreServices/CoreTypes.bundle/
Contents/Resources and found a lot of icon's there, but not one for
the hard disk. I just want the Icon the Finder displays for the
internal hard drive.
All the Best
Dave
_______________________________________________
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