问题
I have a NSVisualEffectView within a NSPopover developed for 10.10.
When subclassing the NSVisualEffectView to have hover background color effect, the borderless button color seems to be different
I tried setting the backgroundColor
of the button cell to clearColor
or the same as I used in drawRect:
in of the NSVisualEffectView, the former gives wrong color (not filled with blue) and the later still the same with wrong color. (gray box around its border).
CALayer
can fix this but is there a way without using it?
Any ideas?
回答1:
After much trial and error, this worked for me:
button.wantsLayer = true
button.layer?.backgroundColor = NSColor.clearColor().CGColor
I've got an NSTableView with NSVisualEffectView style. I created a custom NSTableViewCell class and put these lines in its drawRect method.
来源:https://stackoverflow.com/questions/30659384/nsbutton-on-nsvisualeffectview-wrong-background-color