Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kmuralidharan91/68619d6e359ab778879d416e0d7b906e to your computer and use it in GitHub Desktop.
Save kmuralidharan91/68619d6e359ab778879d416e0d7b906e to your computer and use it in GitHub Desktop.
switch userNotificationsAuthorizationStatus {
case .notDetermined:
requestPermission()
case .authorized, .denied, .provisional:
fallthrough
@unknown default:
// No need to request permission.
print("Didn't request permission for User Notifications")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment