I have an NSViewController with 4 NSTableViews inside (View based),
all of them have NSTextFields and I want to call a method for triggering an action after editing each of them called
-(void)controlTextDidEndEditing:(NSNotification *)obj{
NSTextField *textfield = (NSTextField *) [obj object]{}
but for do so, I need to know which NSTableView am I editing, what's the proper way to get that information