I tried to highlight the rows in a NSBrowser
using selectRowIndexes
of the NSBrowser
,but it does not highlight the rows.In 'NSTableView`rows can be highlighted using
- [NSTableView selectRowIndexes:byExendingSelection:]
- (void)selectRowIndexes:(NSIndexSet *)rowIndexes inColumn:(NSInteger).
Is there any api to highlight the rows in NSBrowser
? I would like to highlight the rows without a mouseclick on the browser,I have some known indexes I want to highlight these rows in my custom method.