We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Environnement Setup:
I push multiples notification from "Parse-dashboard" with "Increment" option, and I used this code in my application:
- (void)applicationDidBecomeActive:(UIApplication *)application { PFInstallation *currentInstallation = [PFInstallation currentInstallation]; if (currentInstallation.badge != 0) { currentInstallation.badge = 0; [currentInstallation saveEventually]; } }
Unfortunately, this code will never clear the badge to Zero.
Only works if I write this (remove test):
- (void)applicationDidBecomeActive:(UIApplication *)application { PFInstallation *currentInstallation = [PFInstallation currentInstallation]; currentInstallation.badge = 0; [currentInstallation saveEventually]; }
The field "badge" is always zero in the object "PFInstallation". Any idea ?
Thanks
The text was updated successfully, but these errors were encountered:
This does not look like a Parse Server issue. Consider opening an issue in the Parse iOS SDK repository or asking on Stack Overflow.
Sorry, something went wrong.
No branches or pull requests
Hi,
Environnement Setup:
I push multiples notification from "Parse-dashboard" with "Increment" option, and I used this code in my application:
Unfortunately, this code will never clear the badge to Zero.
Only works if I write this (remove test):
The field "badge" is always zero in the object "PFInstallation".
Any idea ?
Thanks
The text was updated successfully, but these errors were encountered: