使用EventKit
我的标题字符串呈现事件视图时,标题建议未显示在呈现的视图中,它只是空白
EKEventStore *es = [[EKEventStore alloc] init];
EKEventEditViewController *controller = [[EKEventEditViewController alloc] init];
controller.eventStore = es;
controller.editViewDelegate = self;
EKEvent *event = [EKEvent eventWithEventStore:eventStore];
event.title = @"This is an event"; //does not appear in presented view
[self.editController presentModalViewController:controller animated:YES];
[event setCalendar:[eventStore defaultCalendarForNewEvents]];