I've setup a local notification that repeats every minute, however I need the application badge number to increment each time. When I run it at the moment it doesn't seem to increase, it just stays a 1. Please can someone help me out?

Here is how I create the notifications:

// Create the UILocalNotification
UILocalNotification *myNotification = [[UILocalNotification alloc] init];
myNotification.alertBody = @"Blah blah blah...";
myNotification.alertAction = @"Blah";
myNotification.soundName = UILocalNotificationDefaultSoundName;
myNotification.applicationIconBadgeNumber++;
myNotification.timeZone = [NSTimeZone defaultTimeZone];
myNotification.repeatInterval = NSMinuteCalendarUnit;
myNotification.fireDate = [[NSDate date] dateByAddingTimeInterval:30];
[[UIApplication sharedApplication] scheduleLocalNotification:myNotification];
link|improve this question

Can you post some code ? – HeikoG Feb 12 at 17:49
@HeikoG I have added the code I use to create the notifications. – The Crazy Chimp Feb 12 at 18:01
@TheCrazyChimp did you ever find a solution for this problem? – d.ennis May 11 at 15:42
feedback

4 Answers

up vote 0 down vote accepted

After doing lot's of research I figured out the solution is that there is no solution:

iPhone: Incrementing the application badge through a local notification

It is not possible to update dynamically the badge number with local notifications while your app is in the background. You have to use push notifications.

link|improve this answer
feedback

Try something like:

int plusOne = [myNotification.applicationIconBadgeNumber intValue];
plusOne++;

myNotification.applicationIconBadgeNumber = plusOne;
link|improve this answer
Unfortunately this didn't work for me - thanks for the suggestion though. – The Crazy Chimp Feb 12 at 18:19
feedback

This should work.

myNotification.applicationIconBadgeNumber = [[UIApplication sharedApplication] applicationIconBadgeNumber] + 1;
link|improve this answer
feedback

Not sure if this will do anything, but try changing

myNotification.applicationIconBadgeNumber++;

to

myNotification.applicationIconBadgeNumber = myNotification.applicationIconBadgeNumber+1;

or

myNotification.applicationIconBadgeNumber += 1;
link|improve this answer
Unfortunately this didn't work for me - thanks for the suggestion though. – The Crazy Chimp Feb 12 at 18:19
1  
In C all the three expressions are identical. Obj-C is no different in this regard. – Costique Feb 12 at 19:16
feedback

Your Answer

 
or
required, but never shown

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