I have the following code:

AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest: request];

operation.completionBlock = ^{
    if([operation hasAcceptableStatusCode]){

    }
};

ARC doesn't seem to like [operation hasAcceptableStatusCode], and i get the following warning: "Capturing 'operation' strongly in this block is likely to lead to a retain cycle".

I'm not very experienced with referencing, any idea whats the way to go here?

Thanks,
Shai

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Blocks capture (retain) the objects that you reference from outside of them.

operation will retain completionBlock which will retain operation, hence the retain cycle.

The best thing to do is create a weak reference to the object and pass that in instead

AFHTTPRequestOperation * __weak theOperation = operation

operation.completionBlock = ^{
    if (theOperation) {
        return;
    }
};

Weak references are safe at runtime so if operation has been dealloced you will just send a message to nil.

link|improve this answer
Kind of weird but it did the job, thanks :) – Shai Mishali Nov 20 '11 at 17:27
feedback

Your Answer

 
or
required, but never shown

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