在我正在尝试制作的这个应用程序中,我使用推送通知.这部分工作正常.当我发送通知时,我还会在应用图标上添加徽章.问题是,当我在应用程序中午餐时,它应该会再次消失,但事实并非如此.
-(IBAction)Push{
NSMutableDictionary *data = [NSMutableDictionary dictionary];
[data setObject:@"Numfeud: Troels made a move!" forKey:@"alert"];
[data setObject:[NSNumber numberWithInt:1] forKey:@"badge"];
[data setObject:@"bar" forKey:@"foo"];
[PFPush sendPushDataToChannelInBackground:@"GameChannel2" withData:data];
}
Run Code Online (Sandbox Code Playgroud)
在application didFinishLaunchingWithOptions我尝试以这种方式将徽章设置为0:
[UIApplication sharedApplication].applicationIconBadgeNumber = 0;
Run Code Online (Sandbox Code Playgroud)
如何清除应用程序图标徽章?