I am trying to figure out a way to use typeof to create a weak reference to self for use in blocks to avoid retain cycles.
typeof
self
When I first rea
i think use this to be ok:
__weak __typeof(&*self)weakSelf = self;
it reference AFNetworking's AFURLConnectionOperation.m codes.