Hi,
how can I check if someone has allowed local notifications?
Thanks in advance!
how can I check if someone has allowed local notifications?
Thanks in advance!
Code Block UNUserNotificationCenter.current().getNotificationSettings { (settings) in if settings.authorizationStatus == .authorized { // Notifications are allowed } else { // Either denied or notDetermined } }
No other idea if you don't give other information.Just tried this, it didn’t work. Other ideas?