Skip to content

Instantly share code, notes, and snippets.

@zaneclaes
Created July 21, 2014 16:41
Show Gist options
  • Save zaneclaes/3631927a0e50259b53ba to your computer and use it in GitHub Desktop.
Save zaneclaes/3631927a0e50259b53ba to your computer and use it in GitHub Desktop.
__weak typeof (self) wself = self;
[self runRequest:request handler:^(NSError *err) {
__strong typeof (wself) sself = wself;
__weak typeof(sself) wself2 = sself;
[sself runSecondRequest:data handler:^(NSError *err) {
__strong typeof (wself2) sself2 = wself2;
[sself2 doStuff];
}];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment