Skip to content

Instantly share code, notes, and snippets.

@TheFox
Last active June 19, 2016 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TheFox/c6fd7c66d2f1ecdbfc9e to your computer and use it in GitHub Desktop.
Save TheFox/c6fd7c66d2f1ecdbfc9e to your computer and use it in GitHub Desktop.
Sample code how to send push notification to the Notification Center under Apples OS X 10.8 Mountain Lion.
NSUserNotification *note = [[NSUserNotification alloc] init];
[note setTitle:@"TestApp"];
[note setInformativeText:@"Hello World!"];
NSUserNotificationCenter *center = [NSUserNotificationCenter defaultUserNotificationCenter];
[center scheduleNotification: note];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment