I have a table view connected to an array controller and am able to populate the table with data. I want to be able to select a row and a handler be called. I've tried
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
but am unable to call the handler.
Working on a Mac app in Objective-C. How do I hook up this handler correctly or should I be using something different?
You won't be using
UIKitin a Mac application, instead you will useAppKit'sNSTableView.Create a column:
Set up the table: