NSOutlineViewDelegate
has outlineView:shouldEditTableColumn:item:
which gets called before editing a cell. I need a similar method called after the user has finished editing a cell (in order to trigger some calculations). Where should I look for this event ?
views:
31answers:
1
+2
A:
Just implement the -outlineView:setObjectValue:forTableColumn:byItem:
datasource method and you can modify the object that is passed in.
Rob Keniger
2010-04-24 08:47:47
thanks, exactly what I needed
matei
2010-04-24 10:19:06