1
通知をタップするとアプリが開きますが、通知にボタンを追加してボタンを押すとアプリがバックグラウンドに留まります通知(フロントエンドでアプリを開く)アクションボタンshow app on foreground
可能ですか?
解決済み!答えてくれてありがとう:UIUserNotificationActivationModeForeground
へのあなたの行動の
let actionButton = UIMutableUserNotificationAction()
actionButton.identifier = identifier
actionButton.title = title
actionButton.activationMode = UIUserNotificationActivationMode.Foreground
actionButton.authenticationRequired = true
actionButton.destructive = false
アクションの目的は、ユーザーがあなたのアプリを開くことなく何らかのアクションを実行できるようにすることです – Paulw11