Skip to content

Instantly share code, notes, and snippets.

@shebbys
Created November 18, 2013 21:12
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 shebbys/7535387 to your computer and use it in GitHub Desktop.
Save shebbys/7535387 to your computer and use it in GitHub Desktop.
UILocalNotification* localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:30];
localNotification.alertBody = @"Alert message goes here";
localNotification.timeZone = [NSTimeZone defaultTimeZone];
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment