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.
|
3
|
|
|
|
|
|
It's called fast enumeration and was a new feature with Objective C 2.0, which is available on the iPhone. |
|||
|
|
|
I'd probably just use a predicate, which would be something like this:
Edit: This code is functionally equivalent to:
|
||||||||||||
|
