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
Post a Comment