Skip to content

Instantly share code, notes, and snippets.

@miwillhite
Created June 25, 2014 21:17
Show Gist options
  • Save miwillhite/ff4ca9dab42324749fb7 to your computer and use it in GitHub Desktop.
Save miwillhite/ff4ca9dab42324749fb7 to your computer and use it in GitHub Desktop.
__weak typeof(self) weakSelf = self;
[[NSNotificationCenter defaultCenter] addObserverForName:ACAccountStoreDidChangeNotification
object:nil
queue:nil
usingBlock:^(NSNotification *note) {
__strong typeof(weakSelf) strongSelf = weakSelf;
[strongSelf requestProfileInformation];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment