我正在使用 UILocalNotification 为我的应用程序中的日历事件安排警报
我在我的应用程序中安排了下午 3:30 的活动,并将警报设置为 1 小时前。
在 2:30,警报出现(预期),但它表示事件是现在。另一方面,本机警报显示事件发生在 1 小时后。
编辑:这是我如何安排通知:
UILocalNotification *localNotification = [[[UILocalNotification alloc] init]autorelease];
localNotification.fireDate = fireDate;
localNotification.timeZone = [NSTimeZone defaultTimeZone];
localNotification.alertBody = [NSString stringWithFormat: @"%@ \n%@ at: %@",title,todayString,[formatter stringFromDate:Startdate]];
localNotification.alertAction = NSLocalizedString(@"Luanch", nil);
NSMutableDictionary *dict = [[[NSMutableDictionary alloc] init] autorelease];
[dict setObject:ID forKey:@"id"];
[dict setObject:Startdate forKey:@"start"];
[dict setObject:endDate forKey:@"end"];
[dict setObject:[NSNumber numberWithInt:relativeOffset] forKey:@"offset"];
localNotification.userInfo = dict;
localNotification.soundName = UILocalNotificationDefaultSoundName;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];