I have a NSWindow subclass, looking like this
The thing that bothers me is that I would like to alter the shadow. Over a standard window, like Xcode right here, the contrast is a little weak.
So I'd like to apply a stronger NSShadow
to it.
I found this here:
Apparently, you shouldn't, because the UI should mainly be handled by the OS. But the window is already completely custom, so I figured it would be ok.
How can I achieve this?
Edit
I forgot to mention, I know I could just redraw the NSWindow
, but I try to avoid this.