iOS 通知栏消息的清空
2022-03-15 本文已影响0人
th先生
当收到多条通知消息。
分两种情况
1、applicationIconBadgeNumber != 0
这种时候,点开一个,清理一个。
2、applicationIconBadgeNumber == 0
这种时候,点开一个,全部清理。
// 清空已经收到的通知
[[UNUserNotificationCenter currentNotificationCenter] removeAllDeliveredNotifications];
之前没有注意到这种情况,记录一下哈。