Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been implementing the push service to my application, and I've been thinking about the application's badge. My app is a mail app (sorta) and I want to notify the user via push for new messages added to the inbox, I want the badge = number of new messages in the inbox.

I thought of doing it server sided (provider) checking for new messages and sending the number as the badge.

The question is: Is there a way to auto-increment the application's badge, without having to calculate the badge value server sided and afterwards sending it as a part of the push payload to the APSN?

Maybe there's a way to send in JSON badge field some variable like "++" or something like that. Any hack for that? Or do I need to go with the counting system server-sided??

share|improve this question
Is auto-increment still not possible? I'm building a chat app called AcaniChat. Like iPhone's native Messages app, the badge count is equal to the number of new (unread) messages, and you get a push notification for each new message. So, if auto-increment were possible, I wouldn't have to store every device token's badge count on the server. – MattDiPasquale Sep 16 '12 at 0:17

2 Answers

up vote 13 down vote accepted

Nope, you'll have to track this on the server side. If you don't include any value for badge, it will get removed completely.

Of course though this is only if the user receives the notification and the app isn't running/they choose not to launch it. If the user launches the app or already had it running you can do whatever you want in regards to incrementing.

share|improve this answer
That's what I thought. I already thought of a system, but it crossed my mind that Apple might have been a bit smarter this time - and thought of it themselves. Thanks for clearing that up. – natanavra Dec 22 '09 at 19:24
1  
Why not maintain badge number in app by caching it (e.g. NSUserDefaults) – MSK Jun 12 '12 at 7:24
2  
@MSK How does maintaining the badge number on the client solve this issue? Anyway, you could just do [UIApplication sharedApplication].applicationIconBadgeNumber if you wanted to get the badge number, no need to cache it in NSUserDefaults. – MattDiPasquale Sep 16 '12 at 0:24
Now that I have already implemented it in our apps I know that I was wrong :) – MSK Sep 16 '12 at 6:24

It's sort of possible but there's a trade-off.

You can always send up the unread total as an add-on JSON value as part of the push payload (push ignores keys it doesn't explicitly understand). Once the user opens the app, read the value and adjust the badge programmatically yourself via UIApplication's applicationIconBadgeNumber property.

The problem with doing it that way is that push adjusts the badge value even if the user doesn't open the app (i.e. when they get the notice and the user hits 'Cancel' instead of 'View'). In those cases your badge won't change, but as soon as they run the app (if they hit 'View') then your app can set it right.

share|improve this answer
It's not really an answer... you said I can add it as JSON's payload, but that's something I can already do, I meant - is there a way to auto-increment the badge with each push... The answer, it appears - is no. I will have to manage it on the server, and then send a number as aps=>badge... Reseting the badge myself whenever the user gets into the application, and also reseting the counter on the server whenever the user fetches data. Thanks anyways. – natanavra Dec 22 '09 at 19:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.