Skip to content

Instantly share code, notes, and snippets.

@joannes7
Created December 12, 2013 17:28
Show Gist options
  • Save joannes7/7931892 to your computer and use it in GitHub Desktop.
Save joannes7/7931892 to your computer and use it in GitHub Desktop.
NSUserNotification *notification = [[NSUserNotification alloc] init];
[notification setTitle:@"Hello World"];
[notification setInformativeText:@"Hello world message"];
[notification setDeliveryDate:[NSDate dateWithTimeInterval:20 sinceDate:[NSDate date]]];
[notification setSoundName:NSUserNotificationDefaultSoundName];
NSUserNotificationCenter *center = [NSUserNotificationCenter defaultUserNotificationCenter];
[center scheduleNotification:notification];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment