次のコードを使用して、プッシュとローカル通知の許可を要求しています。
let application = UIApplication.shared
let settings: UIUserNotificationSettings = UIUserNotificationSettings( types: [.alert, .badge, .sound], categories: nil )
application.registerUserNotificationSettings( settings )
application.registerForRemoteNotifications()
アクションを実行する前に、ユーザーが通知を受け入れるか拒否するのを待つ必要があります。どうすればこれを達成できますか?