How can I remove delivered notifications on watchOS?
override func willActivate() {
super.willActivate()
UNUserNotificationCenter.current().removeAllDeliveredNotifications()
}
It doesn't work.
How can I remove delivered notifications on watchOS?
override func willActivate() {
super.willActivate()
UNUserNotificationCenter.current().removeAllDeliveredNotifications()
}
It doesn't work.