I'm looking for the standard idiom to iterate over an NSArray. My code needs to be suitable for OS X 10.4+.
feedback
|
|
The standard idiom for pre-10.5 is to use an NSEnumerator and a while loop, like so:
I recommend keeping it simple. Tying yourself to an array type is inflexible, and the purported speed increase of using When using Perhaps the biggest thing an NSEnumerator (or fast enumeration) protects you from is having a mutable collection (array or otherwise) change underneath you without your knowledge while you're enumerating it. If you access the objects by index, you can run into strange exceptions or off-by-one errors (often long after the problem has occurred) that can be horrific to debug. Enumeration using one of the standard idioms has a "fail-fast" behavior, so the problem (caused by incorrect code) will manifest itself immediately when you try to access the next object after the mutation has occurred. As programs get more complex and multi-threaded, or even depend on something that third-party code may modify, fragile enumeration code becomes increasingly problematic. Encapsulation and abstraction FTW! :-) Update: Now, nearly two years later, hopefully there is less need to write code for 10.4 or earlier. Thus, I thought it wise to add the generally-preferred code for 10.5+/iOS.
This construct is used to enumerate objects in a collection which conforms to the NSFastEnumeration protocol. This approach has a speed advantage because it stores pointers to several objects (obtained via a single method call) in a buffer and iterates through them by advancing through the buffer using pointer arithmetic. This is much faster than calling It's also worth noting that while you technically can use a for-in loop to step through an NSEnumerator, I have found that this nullifies virtually all of the speed advantage of fast enumeration. The reason is that the default NSEnumerator implementation of I reported this in If you are coding for OS X 10.6 / iOS 4.0 and above, you also have the option of using block-based APIs to enumerate arrays and other collections:
You can also use | |||||||||||||||||
feedback
|
|
For OS X 10.4.x and previous:
For OS X 10.5.x (or iPhone) and beyond:
| |||||||||||||
feedback
|