Is there a way to trigger a method (or a method its self which is triggered) when a Row in a is edited, more specifically, when text in a row is edited or when something changes in the Table View (e.g Row Added/Removed)?
+3
A:
There are several. You could use a data source. You could using bindings. You might even go the subclassing route, but that is very rare, indeed.
I would suggest you start here:
Actually, given your other questions and the responses, I would suggest you start here:
bbum
2009-09-27 18:14:36
I see, there are some delegate notifications for Selection Did Change and Column Did Move or Resize. But not one specifically for when a row is edited.
Joshua
2009-09-28 05:57:15
You need to focus on the conceptual guides for Cooca, not on class documentation. Cocoa implements particular patterns pervasively. In this case, you are likely going to want to read about NSControls and NSTextFields, and the editing process therein.
bbum
2009-09-28 17:21:41