How to draw a NSImage like images in NSButtons (with a deepness)?
Is there any way to draw an NSImage like images in NSButtons or other cocoa interface elements? Here are examples: Apple uses pdf's with black icons: omz If you simply want this effect to be applied when you use your own images in a button, use [myImage setTemplate:YES] . There is no built-in way to draw images with this effect outside of a button that has the style shown in your screenshots. You can however replicate the effect using Core Graphics. If you look closely, the effect consists of a horizontal gradient, a white drop shadow and a dark inner shadow (the latter is the most difficult).