Parse.com Swift重置推送通知徽章

时间:2015-06-28 12:52:12

标签: ios swift parse-platform

我正在使用最新版本的Parse Library和最新版本的Xcode 6.3.2应用程序正确接收通知,当应用程序变为活动状态时,它会在本地重置徽章,但在下一个通知中,徽章会忽略徽章的值为0。

代码:

        if (currentInstallation.badge != 0) {
            self.reloadInfo = true
            currentInstallation.badge = 0
            currentInstallation.saveEventually()
        } else {
            self.reloadInfo = false
        } 

不起作用,

currentInstallation = PFInstallation.currentInstallation()
currentInstallation.badge = 0
currentInstallation.saveEventually()

任何可能出错的想法?​​

提前致谢。

1 个答案:

答案 0 :(得分:0)

配置文件,Parse安装数据库只是一团糟,它刚刚解决了。

感谢。