Can I just want to replace the appearance by setting a property of NSButton?

I am able to change the appearance by using the "image" property of the button but I got an ugly gray rectangle whenever the custom button is clicked (the image has a transparency). Is there a way to hide that rectangle?

Thanks.

link|improve this question

20% accept rate
Have you set the button type to UIButtonTypeCustom? As this is tagged with iOS I am going to assume you are speaking of UIButton. – Osiris Oct 31 '11 at 9:19
Ah wrong tag sorry. I am developing mac application. I'll fix tag now. – Quaso Oct 31 '11 at 9:31
feedback

1 Answer

up vote 1 down vote accepted

The following call changes the behavior by making image be darkened when clicked:

[[button cell] setHighlightsBy:NSContentsCellMask];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.