I need my application to open a window when a user double clicks on a row in an NSTableView. I\'m having a bit of a difficult time finding information or exampl
You can do same thing with the bindings, first of all declare one mentod in .h file
-(IBAction)openWindow:(id)sender
in .m file implement the same
-(IBAction)openWindow:(id)sender
{
//do something here;
}
got to that nib where your table view is present, select table view and got the the second last tab of attribute inspector (bindings),open double click argument disclosure triangle check bind to check box select file's owner, model key path should be "self", selector name will be "openWindow:", same process do with "Double click target" disclosure,
This will work