views:

31

answers:

1

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 ?

+2  A: 

Just implement the -outlineView:setObjectValue:forTableColumn:byItem: datasource method and you can modify the object that is passed in.

Rob Keniger
thanks, exactly what I needed
matei