最佳答案
我有一个 iOS 应用程序,其中一些推送通知被发送到。我的问题是,消息/通知在被点击之后会保留在 iOS 的通知中心。下次应用程序打开时,如何在 NotificationCenter 中删除应用程序的通知?
我看到过一些帖子,人们把 setApplicationIconBadgeNumber
调用为零来清除通知。这对我来说很奇怪,所以我相信也许存在另一种解决方案?
编辑1:
我在清除通知时遇到了一些问题。请在这里查看我的代码:
- (void) clearNotifications {
[[UIApplication sharedApplication] setApplicationIconBadgeNumber: 0];
[[UIApplication sharedApplication] cancelAllLocalNotifications];
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
if (launchOptions != nil)
{
NSDictionary* dictionary = [launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey];
if (dictionary != nil)
{
NSLog(@"Launched from push notification: %@", dictionary);
[self clearNotifications];
}
}
return YES;
}
- (void)application:(UIApplication*)application didReceiveRemoteNotification:(NSDictionary*)userInfo
{
NSLog(@"Received notification: %@", userInfo);
[self clearNotifications];
}
我在用 Xcode 运行这个应用程序。当应用程序被最小化,我使用通知中心的通知启动应用程序时,我可以在日志中看到,调用了 didReceiveRemoteNotification
,使用了断点,我可以看到,clearNotifications
已经运行。但是通知仍然挂在通知中心中。为什么?