0

如何访问 iPhone 的日历以便获得会议的参加者?

4

2 回答 2

0

您需要为此使用“EventKit”:http: //developer.apple.com/library/ios/#documentation/DataManagement/Conceptual/EventKitProgGuide

于 2013-05-11T06:15:20.163 回答
0

使用 EventKit 框架

看看这个演示:http: //developer.apple.com/library/ios/#samplecode/SimpleEKDemo/Listings/Classes_RootViewController_h.html#//apple_ref/doc/uid/DTS40010160-Classes_RootViewController_h-DontLinkElementID_3

解决你的问题。

代码:

self.eventStore = [[EKEventStore alloc] init];
self.eventsList = [[NSMutableArray alloc] initWithArray:0];
self.defaultCalendar = [self.eventStore defaultCalendarForNewEvents];
NSArray *calendarArray = [NSArray arrayWithObject:defaultCalendar];

希望这有助于开始......

于 2013-05-11T06:43:06.640 回答