Accessing an instance variable iVar of your class inside a block is interpreted by the compiler as self->iVar. Therefore the block captures self, which is not modified.
I am sure that the __block modifier works also with dispatch_async, so this might be a documentation error.
ADDED
The following example shows how a __block variable might be used with dispatch_async:
dispatch_queue_t queue = dispatch_queue_create("myQueue", DISPATCH_QUEUE_CONCURRENT);
__block int total = 0;
printf("address of total: %p\n", &total);
// dispatch some (concurrent) blocks asynchronously:
dispatch_async(queue, ^{
OSAtomicAdd32(5, &total);
});
dispatch_async(queue, ^{
OSAtomicAdd32(7, &total);
});
// Wait for all blocks to complete:
dispatch_barrier_sync(queue, ^{ });
printf("address of total: %p\n", &total);
printf("total=%d\n", total);
Output:
address of total: 0x7fff5fbff8f0
address of total: 0x100108198
total=12
One can see that total is copied from stack to heap when the blocks are executed.
ADDED
I just found this in the Blocks Programming Guide. It explains why it is no problem to use __block variables with asynchronous blocks.
__block variables live in storage that is shared between the lexical scope of the variable and all blocks and block copies declared or
created within the variable’s lexical scope. Thus, the storage will
survive the destruction of the stack frame if any copies of the blocks
declared within the frame survive beyond the end of the frame (for
example, by being enqueued somewhere for later execution). Multiple
blocks in a given lexical scope can simultaneously use a shared
variable.
As an optimization, block storage starts out on the
stack—just like blocks themselves do. If the block is copied using
Block_copy (or in Objective-C when the block is sent a copy),
variables are copied to the heap. Thus, the address of a __block
variable can change over time .