это моя функция. Моя функция, когда приложение открывается и убивает приложение раньше, чем через 10 секунд, это показывать уведомление, но я хочу узнать, как перехватить интервал времени при закрытии только приложения
func showNotification(title: String, body: String) {
// Configure the notification's payload.
let content = contentNotification(title: title, body: body)
// Deliver the notification in five seconds.
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 10, repeats: false)
let request = UNNotificationRequest(identifier: "FiveSecond", content: content, trigger: trigger) // Schedule the notification.
let center = UNUserNotificationCenter.current()
// UNUserNotificationCenter.current().delegate = (self as! UNUserNotificationCenterDelegate)
center.add(request) { (error: Error?) in
if error != nil {
// Handle any errors
print("err Noti = \(error.debugDescription)")
}
}
}