Skip to content

Instantly share code, notes, and snippets.

@ostholz
Last active December 14, 2015 13:20
Show Gist options
  • Save ostholz/94fe3896c963bbffb193 to your computer and use it in GitHub Desktop.
Save ostholz/94fe3896c963bbffb193 to your computer and use it in GitHub Desktop.
__weak __typeof(self) weakSelf = self;
[self doSomeThingWithBlock:^(void) {
if (weakSelf) {
__strong __typeof(weakSelf) strongSelf = weakSelf;
strongSelf.someProperty = someValue;
[strongSelf performSomeMethod];
}
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment