Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Before ARC I had the following code that retains the delegate while an async operation is in progress:

- (void)startAsyncWork
{
    [_delegate retain];
    // calls executeAsyncWork asynchronously
}

- (void)executeAsyncWork
{
    // when finished, calls stopAsyncWork
}

- (void)stopAsyncWork
{
    [_delegate release];
}

What is the equivalent to this pattern with ARC?

share|improve this question

3 Answers

up vote 8 down vote accepted

Why not just assign your delegate object to a strong ivar for the duration of the asynchronous task?

Or have a local variable in executeAsyncWork

- (void)executeAsyncWork
{
    id localCopy = _delegate;

    if (localCopy != nil) // since this method is async, the delegate might have gone
    {
        // do work on local copy
    }
}
share|improve this answer
Thank you. That was my first idea too. I was hoping there would be another neat trick ;-). – Alexander Oct 17 '11 at 11:47
There is, use GCD! ;-) – hypercrypt Oct 17 '11 at 12:48
@hypercrypt: GCD is not a solution to making the variable hang around but it is a particularly nice way to actually do the async work. – JeremyP Oct 17 '11 at 14:19
@hypercrypt: I know GCD, but it's not the solution here ;-). I'm working with a NSURLConnectionDelegate. – Alexander Oct 17 '11 at 19:22

Something like this:

- (void)startAsyncWork
{
    id<YourProtocol> delegate = _delegate;
    dispatch_async(/* some queue */, ^{
        // do work
        [delegate doSomething];
    }
}

The block will retain the delegate as long as needed...

share|improve this answer

I have occasionally needed to manually retain and release things (sometimes just for debugging) and came up with the following macros:

#define AntiARCRetain(...) void *retainedThing = (__bridge_retained void *)__VA_ARGS__; retainedThing = retainedThing
#define AntiARCRelease(...) void *retainedThing = (__bridge void *) __VA_ARGS__; id unretainedThing = (__bridge_transfer id)retainedThing; unretainedThing = nil

This works by using the __bridge_retained and __bridg_transfer to cast things to and from (void *) which causes things to be retained, or te create a strong reference without calling retain.

Have fun, but be careful!

share|improve this answer
+1 for making Arc keywords into English-speaking words – Stephen J May 13 at 21:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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