Customizing NSTableView rows background
How could I change 开发者_如何学Pythonthe background of each row of a NSTableView?
The documentation will tell you.
If you want to set the background color differently for specific rows, columns, or row-column intersections, be the table view's delegate and respond to tableView:willDisplayCell:forRow:
by setting the background color of the cell.
精彩评论