I have an interface builder (nib) file with 4 NSTableView.
All of them have the same NSMenu as context menu (I've wired each table to the same menu component).
There is only a menu item inside the menu and it has as target function:
-(IBAction)addRemoveItem:(id)sender
I can easily get the NSMenuItem from the function parameter, and therefore the NSMenu. But how do I get the table? I cannot set it as delegate, because I'm using the same menu with multiple tables.