Skip to content

Instantly share code, notes, and snippets.

@Jesse-calkin
Last active October 18, 2021 20:09
Show Gist options
  • Save Jesse-calkin/5815674 to your computer and use it in GitHub Desktop.
Save Jesse-calkin/5815674 to your computer and use it in GitHub Desktop.
NSLog notifications from App Delegate: http://jessecalkin.com/code-test/
[[NSNotificationCenter defaultCenter] addObserverForName:nil
object:nil
queue:nil
usingBlock: ^(NSNotification *notification) {
NSLog(@"Received Notification:\n%@\n%@",
notification.name,
notification.userInfo);
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment