When I have a block in Objective-C that looks like this:
self.request = [[ASIHTTPRequest requestWithURL:...
[self.longPollRequest setCompletionBlock:^{
NSLog(@"%@", self.request.responseString);
}];
will it retain self or explicitly retain self.request?
As the Block Programming Topics says:
you reference
selfin block, soselfis retained.