My setup is an NSTableView
with one column that is binded to the NSUserDefaults
. Now that works perfectly, as long as nothing gets changed in my tableview.
When I trie to change a value (all simple strings) i get the following error:
Error setting value for key path of object Acid (from bound object <NSTableColumn: 0x1796ef10> identifier: path with object ID 455 in nib named TXPreferencesWindow.nib): [<NSCFString 0x165297e0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key .
Is there a simple way to make that possible? Or should I just implement the Datasource and Delegate methods? (if i did that in the first place, it would have been faster anyway...)