我是否需要删除已发送的通知以不超过通知限制? - Swift
Do I need to remove delivered notifications to not surpass the notification limit? - Swift
我的应用每周安排 30 条通知。我一次只安排 30 个,因为有 64 个的限制。所以,每周,我通过删除它们(使用 center.removeAllPendingNotificationRequests()
)并重新触发它们来更新所有通知。是否也需要调用center.removeAllDeliveredNotifications()
删除之前发送的通知才不会超过限制?或者发送的通知不计入限制?
iOS 正在限制待处理列表的长度,这意味着与已发送的通知无关。
但我只能找到一个可能与此相关的deprecated doc and a radar。
我的应用每周安排 30 条通知。我一次只安排 30 个,因为有 64 个的限制。所以,每周,我通过删除它们(使用 center.removeAllPendingNotificationRequests()
)并重新触发它们来更新所有通知。是否也需要调用center.removeAllDeliveredNotifications()
删除之前发送的通知才不会超过限制?或者发送的通知不计入限制?
iOS 正在限制待处理列表的长度,这意味着与已发送的通知无关。
但我只能找到一个可能与此相关的deprecated doc and a radar。