iOS remove notification from notification center [duplicate]

一个人想着一个人 提交于 2019-12-19 08:30:44

问题


Possible Duplicate:
iOS application: how to clear notifications?

is there a way how to remove notification from notification center(iOS 5) when I click it and start my application ? Thanks a lot


回答1:


Set the applicationIconBadgeNumber property of your UIApplication instance to 0. That is,

[UIApplication sharedApplication].applicationIconBadgeNumber = 0;

Edit: In the current iOS SDK, you can't remove just a single notification from the Notification Center programatically.



来源:https://stackoverflow.com/questions/9978538/ios-remove-notification-from-notification-center

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!