本地通知正在触发,但不可见。 (IOS)

时间:2013-06-29 22:11:33

标签: ios notifications local uilocalnotification

我使用以下代码发出本地通知:

UILocalNotification *localNotif = [[UILocalNotification alloc] init];
if (localNotif == nil)
    return;
localNotif.fireDate = [NSDate dateWithTimeIntervalSinceNow:30]; //itemDate;
localNotif.timeZone = [NSTimeZone defaultTimeZone];

// Notification details
localNotif.alertBody = parentController.activeAssignment.notes;
// Set the action button
localNotif.alertAction = @"View";

localNotif.soundName = UILocalNotificationDefaultSoundName;

// Schedule the notification
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];

我已经使用方法

进行了检查
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification

通知正在触发,但当应用在后台运行时,我的屏幕上没有显示。

0 个答案:

没有答案