filtering NSArray into a new NSArray in objective-c - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:45:38Z http://stackoverflow.com/feeds/question/110332 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/110332/filtering-nsarray-into-a-new-nsarray-in-objective-c 2 filtering NSArray into a new NSArray in objective-c lajos 2008-09-21T05:36:29Z 2008-11-21T07:17:39Z <p>I have an NSArray and I'd like to create a new NSArray with objects from the original array that meet certain criteria. The criteria is decided by a function that returns a BOOL.</p> <p>I can create an NSMutableArray, iterate through the source array and copy over the objects that the filter function accepts and then create an immutable version of it. </p> <p>Is there a better way?</p> http://stackoverflow.com/questions/110332/filtering-nsarray-into-a-new-nsarray-in-objective-c/110343#110343 7 Answer by lajos for filtering NSArray into a new NSArray in objective-c lajos 2008-09-21T05:43:47Z 2008-09-21T05:43:47Z <p>NSArray and NSMutableArray provide methods to filter array contents. NSArray provides filteredArrayUsingPredicate: which returns a new array containing objects in the receiver that match the specified predicate. NSMutableArray adds filterUsingPredicate: which evaluates the receiver’s content against the specified predicate and leaves only objects that match. These methods are illustrated in the following example.</p> <pre><code>NSMutableArray *array = [NSMutableArray arrayWithObjects:@"Bill", @"Ben", @"Chris", @"Melissa", nil]; NSPredicate *bPredicate = [NSPredicate predicateWithFormat:@"SELF beginswith[c] 'b'"]; NSArray *beginWithB = [array filteredArrayUsingPredicate:bPredicate]; // beginWithB contains { @"Bill", @"Ben" }. NSPredicate *sPredicate = [NSPredicate predicateWithFormat:@"SELF contains[c] 's'"]; [array filterUsingPredicate:sPredicate]; // array now contains { @"Chris", @"Melissa" } </code></pre> http://stackoverflow.com/questions/110332/filtering-nsarray-into-a-new-nsarray-in-objective-c/111117#111117 1 Answer by Ahruman for filtering NSArray into a new NSArray in objective-c Ahruman 2008-09-21T14:22:32Z 2008-09-21T14:22:32Z <p>As lajos said, there’s the NSPredicate mechanism. However, if your predicate can’t be conveniently expressed in terms of NSPredicate, the answer is no, there’s no better way than iterating built into Foundation. You might want to try a <a href="http://cocoadev.com/index.pl?HigherOrderMessaging" rel="nofollow">higher order messaging</a> framework.</p> <p>There are <a href="http://lists.cs.uiuc.edu/pipermail/cfe-dev/2008-August/002670.html" rel="nofollow">indications</a> that future versions of Cocoa will support more convenient mechanisms for filtering and similar operations out of the box.</p> http://stackoverflow.com/questions/110332/filtering-nsarray-into-a-new-nsarray-in-objective-c/308108#308108 2 Answer by Ashley Clark for filtering NSArray into a new NSArray in objective-c Ashley Clark 2008-11-21T07:17:39Z 2008-11-21T07:17:39Z <p>Assuming that your objects are all of a similar type you could add a method as a category of their base class that calls the function you're using for your criteria. Then create an NSPredicate object that refers to that method.</p> <p>In some category define your method that uses your function</p> <pre><code>@implementation BaseClass (SomeCategory) - (BOOL)myMethod { return someComparisonFunction(self, whatever); } @end </code></pre> <p>Then wherever you'll be filtering:</p> <pre><code>- (NSArray *)myFilteredObjects { NSPredicate *pred = [NSPredicate predicateWithFormat:@"myMethod = TRUE"]; return [myArray filteredArrayUsingPredicate:pred]; } </code></pre> <p>Of course, if your function only compares against properties reachable from within your class it may just be easier to convert the function's conditions to a predicate string.</p>