Ios 我可以在后台更新现有推送通知吗?

Ios 我可以在后台更新现有推送通知吗?,ios,apple-push-notifications,Ios,Apple Push Notifications,我读过这篇文章,只是看到我不能删除通知,但是关于更新通知,可以吗?您实际上可以删除发送到通知中心的通知,但不能修改它们 let nc = UNUserNotificationCenter.current() nc.removeAllDeliveredNotifications() //use if you want to remove all delivered notifications nc.removeDeliveredNotifications(withIdentifiers: [Str

我读过这篇文章,只是看到我不能删除通知,但是关于更新通知,可以吗?

您实际上可以删除发送到通知中心的通知,但不能修改它们

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

也许我表达错了,我想知道,我是否可以在我的应用程序的后台修改或删除已发送的通知。

什么意思,不能删除通知?你真的能做到。不可以,您不能修改已发送到通知中心的通知。那么,如何从通知中心删除通知@DávidPászor