How to get indexes from NSIndexset into an NSArray in cocoa?

Viewed 20472

I'm getting the select items from a table view with:

NSIndexSet *selectedItems = [aTableView selectedRowIndexes];

what's the best way to get the indexes in a NSArray object?

5 Answers
Related