Skip to content

Instantly share code, notes, and snippets.

@n2westman
Created May 28, 2015 23:01
Show Gist options
  • Select an option

  • Save n2westman/5fe467c954654cce876b to your computer and use it in GitHub Desktop.

Select an option

Save n2westman/5fe467c954654cce876b to your computer and use it in GitHub Desktop.
Local Notification Example
UILocalNotification *notif = [[UILocalNotification alloc] init];
notif.fireDate = [NSDate dateWithTimeIntervalSinceNow:10];
[[UIApplication sharedApplication] scheduleLocalNotification:notif];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment