简体   繁体   中英

Clear notifications from the notification center on button click

我想通过单击应用程序内存在的按钮来从通知中心清除应用程序的本地推送通知。

在10之前的iOS上,您只能通过将applicationIconBadgeNumber设置为0来实现。在iOS 10上,您可以使用UNUserNotificationCenter框架修改单个通知。

please use this code it will be help you out

 [[UIApplication sharedApplication] setApplicationIconBadgeNumber:1];
 [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];

 // To remove the notifications in Notification Center:
 [[UIApplication sharedApplication] cancelAllLocalNotifications];

Try this

int badgeCount = [UIApplication sharedApplication].applicationIconBadgeNumber;
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
[[UIApplication sharedApplication] cancelAllLocalNotifications];
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:badgeCount];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM