为什么 backgroundColor 不适用于 owner:self.table?它只适用于 owner:self,但是,第二个选项 -awakeFromNib 被多次调用。
setStringValue 适用于这两个选项。
- (id)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
NSTableCellView *cell = [tableView makeViewWithIdentifier:@"MainCell" owner:self.table];
[cell.textField setStringValue:@"FunWithFlags"]
cell.layer.backgroundColor = [[NSColor greenColor] CGColor];
return cell;
}