本文介绍了iOS从通知中心删除通知的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有什么方法可以在我点击它并启动我的应用程序时从通知中心(iOS 5)中删除通知?
非常感谢

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

推荐答案

设置 applicationIconBadgeNumber 属性您的 UIApplication 实例为0.也就是说,

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

[UIApplication sharedApplication].applicationIconBadgeNumber = 0;

编辑:在当前的iOS SDK中,您无法从通知中心只删除一个通知编程。

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

这篇关于iOS从通知中心删除通知的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 02:33