在我的应用程序中,我必须将事件添加到 Iphone 默认日历。我编写的代码如下
EKEventStore *eventStore = [[EKEventStore alloc] init];
EKEvent *event1 = [EKEvent eventWithEventStore:eventStore];
event1.notes=descriptionStr;
event1.startDate =edate;
event1.endDate=fdate;
[event1 setTimeZone:[NSTimeZone systemTimeZone]];
[event1 setCalendar:[eventStore defaultCalendarForNewEvents]];
问题出在iphone5上。对于 4S 及以前的版本,事件正在完美添加。请指导我。谢谢。