使用Parse.com重置推送通知的徽章计数器

时间:2015-03-01 00:57:35

标签: parse-platform

我使用Parse.com作为推送通知的iOS应用程序。我刚刚使用Badge Increment选项向所有用户发送了一条消息。

现在,当您打开应用时,徽章并不清晰。

知道如何将徽章计数器重置为零吗?

谢谢。

1 个答案:

答案 0 :(得分:2)

您可以尝试以下操作。它应该做的伎俩。这会在您打开应用程序时将徽章重置为0。

- (void)applicationDidBecomeActive:(UIApplication *)application {
  PFInstallation *currentInstallation = [PFInstallation currentInstallation];
  if (currentInstallation.badge != 0) {
    currentInstallation.badge = 0;
    [currentInstallation saveEventually];
  }
  // ...
}