Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Iphone badge number after delete the application

Tags:

iphone

badge

In my application I will show the badge number in springboard icon. But after the user deletes the application and installs it again, the badge number automatically shows up on the springboard icon.

My question is how to set the badge number to 0 when user deletes my application. Which method it will trigger when user deletes the application?

Thanks.

like image 745
Water7 Avatar asked Sep 09 '10 02:09

Water7


People also ask

How do I clear badge count on iPhone?

Go to Settings and open Notifications. Scroll down and tap on Messages. To disable notifications altogether, toggle off Allow Notifications. To remove badges, turn off the toggle next to Badges.

How do I remove number from app icon on iPhone?

To disable these annoying number badges, head to Settings > Notifications on your iPhone, and then scroll down to the app you want to turn the notifications badge off for and select it.


1 Answers

You should update the badge number the next time the user runs your application.

The only other way to update the badge number is with a push notification, which isn't what you want here.

like image 180
progrmr Avatar answered Oct 18 '22 16:10

progrmr