I added an extra new label to a NSTableCellView in IB.
How can I wire up this new field, that I can access it like the builtin field "textfield" in tableView.make( withIdentifier ..
let cell = tableView.make(withIdentifier: "myCell", owner: self) as! NSTableCellView
cell.textField?.stringValue = data[row].firstName
cell.XXX?.stringValue = data[row].lastName
Second issue: I changed the height of the TableCellView in IB to 60 in the size inspector. The height changes in IB but not in the compiled program.
tableView(tableView:heightOfRow:
– vadian