tags:

views:

19

answers:

1

i have a NSMutableArray which contains objects. how to perform filtering operation on it.

+1  A: 
  1. NSArray docs
  2. search for "filter" find -filteredArrayUsingPredicate:
  3. ????
  4. Profit!
jtbandes