Skip to content

Instantly share code, notes, and snippets.

@janodev
Created August 16, 2016 12:47
Show Gist options
  • Save janodev/6ebce1b7ad7aac6a7cadd7797276ac62 to your computer and use it in GitHub Desktop.
Save janodev/6ebce1b7ad7aac6a7cadd7797276ac62 to your computer and use it in GitHub Desktop.
Schedule a notification
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 5, repeats: false)
let request = UNNotificationRequest(identifier: "local_notification", content: content, trigger: trigger)
UNUserNotificationCenter.current().add(request)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment