私はUNNotificationRequest
と一緒に働いています。ボタンをクリックするとすぐに通知ポップアップが表示されます。この場合、アプリケーションを終了すると表示されます。ここ は、システムが通知を配信するときアプリが一番と表示されている場合は、私のコードUNNotificationRequestポップをすぐに作成するにはどうしたらいいですか?
@IBAction func shortNotifBtn(_ sender: Any) {
let center = UNUserNotificationCenter.current()
let content = UNMutableNotificationContent()
content.title = "Late wake up call"
content.body = "The early bird catches the worm, but the second mouse gets the cheese."
content.categoryIdentifier = "alarm"
content.userInfo = ["customData": "fizzbuzz"]
content.sound = UNNotificationSound.default()
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 5, repeats: false)
let request = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: trigger)
center.add(request)
}
あなたはいくつかのメソッドを実装する必要があります... [here](http://stackoverflow.com/a/43408189/5175709) – Honey
問題を解決していただきありがとうございます:) –