I have multiple NSTextFields in my NSTableCellView:
With a double-click action, I call [self.outlineView editColumn:0 row:clickedRow withEvent:nil select: YES];
which works in activating editing in the first text field. I have also setup nextKeyViews in IB so that user can press Tab key to tab through all the fields. But when I try to select the text fields directly with the mouse key press, it never works. It only selects/deselect editing on the NSTableCellView, and hence only edits the first text field each time.
How can I get this to work so that I can select and edit the correct field?