UILocalNotification显示未定义!信息

时间:2013-05-22 13:19:50

标签: ios uilocalnotification

我正在使用UILocalNotification进行本地通知。 一切都很完美。但有时它会显示奇怪的消息UNDEFINED!. 它发生在我使用local notifications的所有应用程序中。 不知道为什么。任何人都可以指出我哪里可能有问题?

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

notif.timeZone = [NSTimeZone defaultTimeZone];
notif.fireDate = [[NSDate date] dateByAddingTimeInterval:value];
notif.alertAction = @"Open!";
notif.alertBody = [[NravoLocalizer sharedInstance] translate:@"end_of_patrol_timer"];
notif.soundName = UILocalNotificationDefaultSoundName;
notif.applicationIconBadgeNumber = 1;
notif.repeatInterval = NSWeekCalendarUnit;

NSDictionary *dict = [NSDictionary dictionaryWithObject:@"patrol_timer" forKey:@"id"];
notif.userInfo = dict;

[[UIApplication sharedApplication] scheduleLocalNotification:notif];

0 个答案:

没有答案