objective c - Set Button Image to Finder Icon -


how set nsbutton's image finder icon (programmatically) ?

i'm trying in objective-c/cocoa (mac)

any appreciated!

alternate solution:

nsworkspace *wksp = [nsworkspace sharedworkspace]; nsimage *image = [wksp iconforfiletype:nsfiletypeforhfstypecode(kfindericon)]; [image setsize:(nssize){ 128.0f, 128.0f }]; [button setimage:image]; 

you may need include <coreservices/coreservices.h> in order compiler know kfindericon.


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -