Can you fast enumerate a NSIndexSet? if not, what\'s the best way to enumerate the items in the set?
NSIndexSet
These answers are no longer true for IndexSet in Swift 5. You can perfectly get something like:
let selectedRows:IndexSet = table.selectedRowIndexes
and then enumerate the indices like this:
for index in selectedRows { // your code here. }