Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Swift: Action if the user accepted or rejected notifications

I'm using the following code to request push and local notification permission:

let application = UIApplication.shared
let settings: UIUserNotificationSettings = UIUserNotificationSettings( types:  [.alert, .badge, .sound], categories: nil )

application.registerUserNotificationSettings( settings )
application.registerForRemoteNotifications()

I need to wait for the user to either accept or decline the notifications before I take an action. How can I achieve this?

like image 537
MVZ Avatar asked Mar 11 '23 17:03

MVZ


1 Answers

Note: Apple has since deprecated the answer I've given below. Please see @ergunkocak's answer

When the user has either granted or denied permissions, the callback method in the app delegate is application(_:didRegister:) which is the method you should use for taking specific actions based on the user's chosen permission settings. I suggest reading the documentation here.

like image 74
Aaron Avatar answered Apr 28 '23 21:04

Aaron