Remove a particular notification from notification tray iOS swift
Solution:
Yes it's definitely possible.If you have an option to save the notification identifier in your database or coredata then it's easy.
You can find the notification from the scheduled notification of your app.
Yes it's definitely possible.If you have an option to save the notification identifier in your database or coredata then it's easy.
You can find the notification from the scheduled notification of your app.
UNUserNotificationCenter.current().removeDeliveredNotifications(withIdentifiers: [ids])
Comments
Post a Comment