0

在我的 iPhone 应用程序中将事件添加到日历时遇到了一些问题。

我正在使用代码:

EKEventStore *eventStore = [[EKEventStore alloc] init];
EKEvent *event  = [EKEvent eventWithEventStore:eventStore];
event.title     = self.event.eventTitle;
event.startDate = self.event.startDate;
event.endDate   = self.event.endDate;
event.notes     = self.event.description;

[event setCalendar:[eventStore defaultCalendarForNewEvents]];
NSError *err;   
[eventStore saveEvent:event span:EKSpanThisEvent error:&err];

这在我的日历中添加了一个event就好了。问题是我的时区显然是关闭的。例如,self.event.startdate调试器中的输出为012-05-11 20:45:00 +0000,这是正确的。但是,当我查看日历时,该事件是在下午 4:45添加的(而不是应该是下午20:458:45 )。

当我使用 po 事件输出整个事件对象时,我得到:

EKEvent <0xf853320> {EKEvent <0xf853320> {title = Tuesday Night Lights!; location = (null); calendar = (null); alarms = (null); URL = (null); lastModified = (null); timeZone = EST (GMT-05:00) offset -18000}; location = (null); startDate = 2012-05-11 20:45:00 +0000; endDate = 2012-05-11 21:45:00 +0000; allDay = 0; floating = 0; recurrence = (null); attendees = (null)}

这里startDate也正确读取。我位于EST时区(我的手机也是如此),那么如何获取代码以在晚上 8:45 将事件添加到我的日历中?

任何想法都会非常有帮助!

4

1 回答 1

0

在正确的时间添加事件。这只是用正确的时区校正显示时间的问题。我发现这解决了我的问题:

而不是这样写:

NSLog(@"startDate: %@", [startDate description]);

像这样写:

NSLog(@"startDate: %@", [startDate descriptionWithLocale:[NSLocale currentLocale]]);

希望这可以帮助您解决问题。

于 2012-07-04T07:48:42.117 回答