Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. switch userNotificationsAuthorizationStatus {
  2. case .notDetermined:
  3. requestPermission()
  4. case .authorized, .denied, .provisional:
  5. fallthrough
  6. @unknown default:
  7. // No need to request permission.
  8. print("Didn't request permission for User Notifications")
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement