Skip to content

Instantly share code, notes, and snippets.

@insidegui
Last active March 19, 2017 15:52
Show Gist options
  • Save insidegui/d9510bb2b567b3f01552bfd303fa0a04 to your computer and use it in GitHub Desktop.
Save insidegui/d9510bb2b567b3f01552bfd303fa0a04 to your computer and use it in GitHub Desktop.
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound]) { authorized, error in
guard error == nil, authorized else {
// not authorized...
return
}
// subscription can be created now \o/
}
UIApplication.shared.registerForRemoteNotifications()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment