Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set Button Image to Finder Icon

How would I set a NSButton's image to the Finder icon (programmatically) ?

I'm trying to do this in Objective-C/Cocoa (Mac)

Any help would be appreciated!

like image 595
Seb Jachec Avatar asked Dec 06 '22 23:12

Seb Jachec


1 Answers

NSWorkspace *workspace = [NSWorkspace sharedWorkspace];
NSImage *finderIcon = [workspace iconForFile:[workspace absolutePathForAppBundleWithIdentifier:@"com.apple.Finder"]];
[finderIcon setSize:NSMakeSize(128.0, 128.0)];
[yourButton setImage:finderIcon];
like image 149
Wevah Avatar answered Jan 03 '23 10:01

Wevah