Trying to get NSTableView in IB for selection, but not editable. But deselecting "Editable" for a column also eliminates the option.
Can someone tell me where I have to paste this code in order for it to work (doesn't work in the application delegate or window controller):
NSTextFieldCell *aCell = [tableColumn dataCell]; [aCell setEditable: NO]; [aCell setSelectable: YES];
BTW, this table is updated by dictionary binding, and the controller dictionary is configured to be unavailable.
source share