屏幕锁定时,本地通知无效

时间:2012-01-30 08:49:10

标签: iphone objective-c ios notifications

我在我的应用程序中使用本地通知,当屏幕锁定时,它会在IOS-5中显示本地通知,但它不能在IOS下面说4。

有什么帮助吗?

1 个答案:

答案 0 :(得分:3)

我一直在iOS 4和5上使用以下代码片段,它运行完美,看一看并检查自己的代码:

    UILocalNotification *notification = [[UILocalNotification alloc] init];

    notification.alertBody = @"Local Message";
    notification.alertAction = @"View";
    notification.soundName = UILocalNotificationDefaultSoundName;
    notification.applicationIconBadgeNumber = 1;

    notification.fireDate = date;
    notification.timeZone = [NSTimeZone defaultTimeZone];

    [[UIApplication sharedApplication] scheduleLocalNotification:notification];
    [notification release];