I\'m getting the select items from a table view with:
NSIndexSet *selectedItems = [aTableView selectedRowIndexes];
what\'s the best way to
Here is the sample code:
NSIndexSet *filteredObjects = [items indexesOfObjectsPassingTest:^BOOL(id obj, NSUInteger idx, BOOL *stop) {do testing here}]; NSArray *theObjects = [theItems objectsAtIndexes:filteredObjects]
Availability Available in iOS 2.0 and later.