Besides the obvious differences:

  • Use enumerateObjectsUsingBlock when you need both the index and the object
  • Don't use enumerateObjectsUsingBlock when you need to modify local variables (I was wrong about this, see bbum's answer)

Is enumerateObjectsUsingBlock generally considered better or worse when for (id obj in myArray) would also work? What are the advantages/disadvantages (for example is it more or less performant)?

link|improve this question
feedback

4 Answers

up vote 20 down vote accepted

For simple enumeration, simply using fast enumeration (i.e. a for…in… loop) is the more idiomatic option. The block method might be marginally faster, but that doesn't matter much in most cases — few programs are CPU-bound, and even then it's rare that the loop itself rather than the computation inside will be a bottleneck.

A simple loop also reads more clearly. Here's the boilerplate of the two versions:

for (id x in y){
}

[y enumerateObjectsUsingBlock:^(id x, NSUInteger index, BOOL *stop){
}];

Even if you add a variable to track the index, the simple loop is easier to read.

So when you should use enumerateObjectsUsingBlock:? When you're storing a block to execute later or in multiple places. It's good for when you're actually using a block as a first-class function rather than an overwrought replacement for a loop body.

link|improve this answer
4  
enumerateObjectsUsingBlock: will either be the same speed or faster than fast enumeration in all cases. for(... in ...) uses fast enumeration which requires the collection to provide some interim representation of the internal data structures. As you note, likely irrelevant. – bbum Dec 20 '10 at 5:04
+1 When you're storing a block to execute later or in multiple places. It's good for when you're actually using a block as a first-class function rather than an overwrought replacement for a loop body. – Steve Jul 4 '11 at 16:05
feedback

Ultimately, use whichever pattern you want to use and comes more naturally in the context.

While for(... in ...) is quite convenient and syntactically brief, enumerateObjectsUsingBlock: has a number of features that may or may not prove interesting:

  • enumerateObjectsUsingBlock: will be as fast or faster than fast enumeration (for(... in ...) uses the NSFastEnumeration support to implement enumeration). Fast enumeration requires translation from an internal representation to the representation for fast enumeration. There is overhead therein. Fast enumeration allows the collection class to enumerate contents as quickly as the fastest traversal of the native storage format. Likely irrelevant for arrays, but it can be a huge difference for dictionaries.

  • "Don't use enumerateObjectsUsingBlock when you need to modify local variables" - not true; you can declare your locals as __block and they'll be writable in the block.

  • enumerateObjectsUsingBlock: supports either concurrent or reverse enumeration.

  • with dictionaries, block based enumeration is the only way to retrieve the key and value simultaneously.

Personally, I use enumerateObjectsUsingBlock: more often than for (... in ...), but - again - personal choice.

link|improve this answer
3  
Wow, very informative. I wish I could accept both of these answers, but I'm going with Chuck's because it resonates a bit more with me. Also, I found your blog (friday.com/bbum/2009/08/29/blocks-tips-tricks) while searching for __block and learned even more. Thank you. – Paul Wheeler Dec 20 '10 at 5:19
Just for sheer informative value I'm giving this a vote. Nice answer. – imnk Jun 16 '11 at 15:06
feedback

To answer the question about performance, I made some tests using my performance test project. I wanted to know which of the three options for sending a message to all objects in an array is the fastest.

The options were:

1) makeObjectsPerformSelector

[arr makeObjectsPerformSelector:@selector(_stubMethod)];

2) fast enumeration & regular message send

for (id item in arr)
{
    [item _stubMethod];
}

3) enumerateObjectsUsingBlock & regular message send

[arr enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) 
 {
     [obj _stubMethod];
 }];

It turns out that makeObjectsPerformSelector was the slowest by far. It took twice as long as fast enumeration. And enumerateObjectsUsingBlock was the fastest, it was around 15-20% faster than fast iteration.

So if you're very concerned about the best possible performance, use enumerateObjectsUsingBlock. But keep in mind that in some cases the time it takes to enumerate a collection is dwarfed by the time it takes to run whatever code you want each object to execute.

link|improve this answer
feedback

There is one good reason to use a for loop with fast enumeration: the availability of continue. The block enumeration methods have the BOOL *stop argument as an equivalent of break, but no continue equivalent.

I find quite a few cases where a guard clause is handy within the loop to prevent its execution under some conditions, and with the block enumeration methods, this can get messy. Continue is a nice syntactical short-circuit.

Edit: Not sure if it's bad form to delete a daft answer, but @sho's comment below is correct. This wouldn't be a good reason to choose for..each.

link|improve this answer
3  
Why not call return as your substitute for continue? You just need to terminate a function. – sho Oct 27 '11 at 21:46
That would be fine if the enumeration/loop were the very last statement in your function. Otherwise it'd probably be a bug. – Cris Oct 28 '11 at 1:33
2  
Calling return inside a block just terminates the block. – sho Oct 28 '11 at 3:10
1  
To demonstrate: dispatch_async(dispatch_get_main_queue(), ^{ NSLog(@"a"); return; NSLog(@"b"); }); – sho Oct 28 '11 at 3:15
Missed this the first time around. You're right, of course, good point. – Cris Apr 5 at 2:17
feedback

Your Answer

 
or
required, but never shown

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