Try using NSTableView or NSOutlineView with the selection style set in the list of sources:
[outlineView setSelectionHighlightStyle: NSTableViewSelectionHighlightStyleSourceList]
Then create a custom NSCell class that displays your icon and text.
source
share