I have a NSOutlineView controlled by a NSTreeController. NSOutlineView is connected to a Contextual Menu in Interface Builder.
Control Click brings up my Menu, and the row clicked on is "selected" with a pale highlight with a border.
I can't seem to find any way to find which row is "selected". selectionIndexPath and selectedObjects are nil.
You want to use
clickedRow
. Note that this becomes a bit more complicated if you support multiple selection, because the selection gets targeted by the shortcut menu if the clicked row is within it, whereas if you click elsewhere, the (single) clicked row is the target and the selection is ignored.Here's an example of some code I wrote to handle this: