Is it possible to dismiss/cancel a local notification from a button with in NotificationContentExtension?
I was only able to dismiss the NotificationContentExtension itself, but not the entire notification.
if #available(iOSApplicationExtension 12.0, *) {
self.extensionContext?.dismissNotificationContentExtension()
}
You can do it using UNUserNotificationCenter & UNNotificationContentExtension protocol
Add action using UNUserNotificationCenter
Add a delegate method of the protocol UNNotificationContentExtension in your extension's view controller
Try it and let me know it works.