OutlineGroup
is an analogue to NSOutlineView
. NSOutlineView
supports single/multiple node selection and we can obtain them by querying on NSOutlineView
. Though obtaining selection on NSOutlineView
is O(n), but this can be optimized to O(1) if the view tracks selection and provide them in proper interface.
How to obtain selections from OutlineGroup
? Especially for multiple node selections. I checked out the manual entry, but couldn't find any mention about selection. What am I missing here?
Here is the code.