我正在使用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];