__weak __typeof(self) weakSelf = self; [self doSomeThingWithBlock:^(void) { if (weakSelf) { __strong __typeof(weakSelf) strongSelf = weakSelf; strongSelf.someProperty = someValue; [strongSelf performSomeMethod]; } }];