Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created October 8, 2019 13:14
Show Gist options
  • Save lmiller1990/74c6078d91828cc8e907b138d31c2b70 to your computer and use it in GitHub Desktop.
Save lmiller1990/74c6078d91828cc8e907b138d31c2b70 to your computer and use it in GitHub Desktop.
func schedule() -> Void {
UNUserNotificationCenter.current().getNotificationSettings { settings in
switch settings.authorizationStatus {
case .notDetermined:
self.requestPermission()
case .authorized, .provisional:
self.scheduleNotifications()
default:
break
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment