Есть ли способ удалить все удаленные уведомления одного дня?

Есть ли способ удалить все удаленные уведомления одного дня?

1 ответ

Попробуй это,

UNUserNotificationCenter.current().getDeliveredNotifications { notifications in

    let yesterday = NSCalendar.current.date(byAdding: .day, value: -1, to: Date())!

    let identifiersToRemove = notifications
        .filter { $0.date.compare(yesterday) == .orderedAscending }
        .map { $0.request.identifier }

    UNUserNotificationCenter.current().removeDeliveredNotifications(withIdentifiers: identifiersToRemove)
}
Другие вопросы по тегам