Standard highlighting color in OS X applications is blue.
Is it possible to change it to another color, e.g. gray?
Note that I am using the new view-based
As already mentioned, set emphasized attribute to false, but do it in the custom NSTableRowView class to avoid side effects (like dancing color effect):
override func drawRect(dirtyRect: NSRect) { super.drawRect(dirtyRect) self.emphasized = false }