vote up 1 vote down star
3

What is the most memory efficient way to loop through an NSMutableArray of custom objects? I need to check a value in each object in the array and return how many of that type of object is in the array.

flag

2 Answers

vote up 6 vote down check
for (WhateverYourClassNameIs *whateverNameYouWant in yourArrayName) {
    [whateverNameYouWant performSelector];
    more code here;
}

It's called fast enumeration and was a new feature with Objective C 2.0, which is available on the iPhone.

link|flag
This is a better memory management way to do things, but I do like Dave DeLong's post about Predicates. – Pselus Nov 4 at 2:46
vote up 8 vote down

I'd probably just use a predicate, which would be something like this:

NSArray * filtered = [myArray filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"aProperty = %@", @"someValue"]];
NSLog(@"number of items where aProperty = someValue: %d", [filtered count]);

Edit: This code is functionally equivalent to:

NSMutableArray * filtered = [NSMutableArray array];
for (MyCustomObject * object in myArray) {
  if ([[object aProperty] isEqual:@"someValue"]) {
    [filtered addObject:object];
  }
}
link|flag
Care to give a little explanation of this chunk of code? I'm an iPhone newbie and an Obj-C newbie. Your code looks small and awesome, but I hate using things I don't understand. – Pselus Nov 3 at 21:19
read the Docs for filteredArrayUsingPredicate and NSPredicate predicateWithFormat – mga Nov 3 at 21:20
1  
@Pselus - edited answer – Dave DeLong Nov 3 at 21:24
Thanks for the explanation, that's amazing. I just started using predicates after moving from writing games to doing Core Data-based stuff, but I had know idea they were that powerful. – refulgentis Nov 3 at 21:27
@refulgentis - once you get the hang of predicates (which are totally awesome, btw), have fun wrapping your head around keypaths. I've just started getting into those recently, and they are SO MUCH FUN. =D – Dave DeLong Nov 3 at 21:29
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.