我读到了它,只是看到我无法删除通知,但是关于更新通知,我可以吗?
答案 0 :(得分:1)
您实际上可以删除发送到通知中心的通知,但不能修改它们。
let nc = UNUserNotificationCenter.current()
nc.removeAllDeliveredNotifications() //use if you want to remove all delivered notifications
nc.removeDeliveredNotifications(withIdentifiers: [String]) //use if you want to remove specific delivered notifications
答案 1 :(得分:0)
也许我表示自己错了,我想知道,我是否可以在我的应用程序后台修改或删除已发送的通知。