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
why don't just use
__weak id bself = self;