Change color of NSTableViewCell

后端 未结 4 461
粉色の甜心
粉色の甜心 2021-01-17 17:08

How can I change the color of a cell in my NSTableView?

4条回答
  •  难免孤独
    2021-01-17 17:34

    In your NSTableViewDelegate for the NSTableView, implement this method:

    - (void)tableView:(NSTableView *)tableView 
      willDisplayCell:(id)cell 
       forTableColumn:(NSTableColumn *)tableColumn 
                  row:(NSInteger)row
    

    The NSTableView calls this on its delegate before displaying each cell so that you can affect its appearance. Assuming you're using NSTextFieldCells, for the cell that you want to change call:

    [cell setBackgroundColor:...];
    

    Or, if you want to change the text color:

    [cell setTextColor:...];
    

    If you want columns to have different appearances, or if all of the columns aren't NSTextFieldCells, use [tableColumn identifier] to, er, identify the column. You can set the identifier in Interface Builder by selecting the table column.

提交回复
热议问题