I set the cell spacing in my NSTableView to 0 by sending:
[self.tableView setIntercellSpacing:NSMakeSize(0, 0)]
in the awakeFromNib window controller, but there is still (possibly 1 pixel) empty space between the lines, which in my opinion is where the grid lines are drawn, although I do not use grid lines. How can I get rid of this space between the lines?
update:
The NSTableView documentation seems to say that this 1-pixel split should disappear when the gateway is set to 0, 0. In my case, it is not. Maybe this is a mistake?
cocoa nstableview macos
Mike t
source share