(no title)
ddustin | 12 years ago
__strong MyClass *strongSelf = weakSelf;
if(!strongSelf) return;
... Rest of block
It's also worth noting calling functions on weakSelf can in turn access ivars. Getting a strong reference to self solves both the issues. NSLog calls [self description] in your example.
No comments yet.