I'm having some really irritating problems with local notifications. While finishing up an app that I've nearly completed, I noticed that I couldn't get local notifications to work, no matter what I tried. So instead of wasting time, I decided to go back to basics and see if I could get them working at all.

I created a new XCode view-based application, and replaced -(void)viewDidLoad: with this:

- (void)viewDidLoad
{
    UILocalNotification * theNotification = [[UILocalNotification alloc] init];
    theNotification.alertBody = @"Alert text";
    theNotification.alertAction = @"Ok";

    theNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:10];

    [[UIApplication sharedApplication] scheduleLocalNotification:theNotification];
}

However, that also doesn't do anything at all. I expected to see a notification 10 seconds after launching the app, but nothing appears. Am I missing something really crucial here? I've searched through the Apple documentation and couldn't find anything as to why this is happening. Also, I tested this n both my iPhone and the simulator.

Thanks.

link|improve this question
feedback

2 Answers

up vote 12 down vote accepted

UILocalNotifications are only displayed automatically if the app is not running (or running in background). If the app is running and a local notification fires, UIApplicationDelegate’s - (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification method gets called and the system doesn’t display anything (nor does it play a sound). If you want to display the notification, create an UIAlertView yourself in the delegate method.

link|improve this answer
Perfect. Thank you so much. – JackMorris Feb 11 '11 at 22:15
I presume there isn't a way to change this behavior? The notification center is a great way to display information to my user for asynchronous communication events that occur while the app is running. – David Apr 8 at 5:28
feedback

Just a comment from my personal adventures in stupidity...

I had the same issue, but my problem was that I had forgotten to assign a value to alertBody. If you don't set alertBody, the notification won't display.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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