Skip to content

Instantly share code, notes, and snippets.

@Sutto
Created March 10, 2013 06:29
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 Sutto/5127388 to your computer and use it in GitHub Desktop.
Save Sutto/5127388 to your computer and use it in GitHub Desktop.
UILocalNotification *localNotification = [UILocalNotification new];
NSDate *dateToFire = [[NSDate date] dateByAddingTimeInterval:2];
localNotification.fireDate = dateToFire;
localNotification.alertBody = @"Time to update your profile";
localNotification.soundName = UILocalNotificationDefaultSoundName;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment