我是应用程序开发的新手,想知道有没有办法导入 Google 日历,并将所有事件导入 iCal,或者只导入整个日历?甚至可能吗?另外,如果可能的话,我该怎么做?
问问题
1702 次
1 回答
1
http://code.google.com/p/iphone-gcal/wiki/GettingStarted
试试看。
Google 日历在此处提供了一个公共 API 。
如果您熟悉 JSON(或通过 stackoverflow 搜索),您将了解如何将事件发送到 Google 日历和从 Google 日历发送事件。
您可以通过这些代码行导入整个日历。只需尝试一次:-
EKEventStore *eventStore = [[EKEventStore alloc] init];
//EKEvent *events = [EKEvent eventWithEventStore:eventStore];
NSArray *caleandarsArray = [[NSArray alloc] init];
caleandarsArray = [eventStore calendars];
for (EKCalendar *iCalendars in caleandarsArray)
{
NSLog(@"Calendar Title : %@", iCalendars.title);
[self.calendars addObject:iCalendars.title];
}
它将一一导入所有谷歌日历。
祝你好运!
于 2013-01-18T04:44:06.320 回答