Skip to content

Instantly share code, notes, and snippets.

@aug2uag
Created September 30, 2013 15:44
Show Gist options
  • Save aug2uag/6765755 to your computer and use it in GitHub Desktop.
Save aug2uag/6765755 to your computer and use it in GitHub Desktop.
NSNotificationCenter ApplicationDidBecomeActive
NSNotificationCenter* notificationCenter = [NSNotificationCenter defaultCenter];
[notificationCenter addObserverForName:UIApplicationDidBecomeActiveNotification object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
NSInteger count = [APPLICATION_COUNT_VALUE integerValue];
count++;
[self.textLabel setText:[NSString stringWithFormat:@"%i", count]];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment