self is merely a captured variable inside a block and doesn't reference the block itself, so how does a block reference itself without having an explicit captured variable for that purpose?

link|improve this question

50% accept rate
feedback

3 Answers

__block void(^strawberryFields)();
strawberryFields = [^{ strawberryFields(); } copy];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT,0),
               strawberryFields);
  • you use the __block because the block will make a copy of the value of strawberryFields when the block is created which will be before the assignment.

  • you also must copy the block prior to any other copy operation or else you'll end up with a block that references the on-stack original version.

  • note that the above code leaks the block. Somewhere, there needs to be a release of that block to balance the copy.

link|improve this answer
feedback

I found this pattern to work and stable for ARC (automatic reference counting), both in Debug and Release builds.

-(void) someMethod
{
    // declare a __block variable to use inside the block itself for its recursive phase.
    void __block (^myBlock_recurse)();

    // define the block
    void (^myBlock)() = ^{
        // ... do stuff ...
        myBlock_recurse(); // looks like calling another block, but not really.
    };

    // kickstart the block
    myBlock_recurse = myBlock; // initialize the alias
    myBlock(); // starts the block
}

Initially I tried just putting a __block modifier to myBlock and use that variable directly to recurse within the block's implementation. That works on the ARC Debug build but breaks with an EXC_BAD_ACCESS on the Release build. On the other hand removing the __block modifier raises a "variable not defined when captured by block" warning (and I was reluctant to run it and test).

link|improve this answer
PS: crashes are in iOS 5.0, not sure about Mac. – adib Feb 6 at 13:05
feedback

I have never tried this before and not 100% sure it's useful, if valid, but for example:

typedef void (^BasicBlock)(void);

__block BasicBlock testBlock;
testBlock  = ^{NSLog(@"Testing %p", &testBlock);};
testBlock();

You probably have declare the variable with __block to prevent self-retain cycle.

link|improve this answer
Code is decidedly odd, but more or less correct. The reasoning, though, is incorrect. – bbum Mar 5 '11 at 4:14
What part of the reasoning? I just want to learn. – MHC Mar 5 '11 at 4:16
Sure; see my answer. The code wasn't that odd, really, just that printing the address of an __block variable is typically surprising (in that there is an implied indirection). – bbum Mar 5 '11 at 4:19
Yes, the address means nothing indeed. And I wasn't aware that the block will make a copy of the value before the assignment, so __block is necessary regardless of self retaining. Thank you for the comment. If you let me ask just one more thing, how does block actually deal with __block variable when writing to it? Does it make a reference to the original (and possibly in-stack) variable? – MHC Mar 5 '11 at 4:26
A __block variable is effectively a handle; a pointer to where the data is actually held. It starts on the stack. When you do a Block_copy() (or -copy), it allocates a bit of memory on the heap to hold the variables value, copies it, then updates the pointer in the __block to no longer point to the stack. – bbum Mar 5 '11 at 5:10
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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