Hide NSTableView grid
To hide the little grid between multiple selected cells is an NSTableView, use setIntercellSpacing:
[yourTableView setIntercellSpacing:NSMakeSize(0,0)];
To hide the little grid between multiple selected cells is an NSTableView, use setIntercellSpacing:
[yourTableView setIntercellSpacing:NSMakeSize(0,0)];