-1

私はアプリ開発に不慣れで、Google カレンダーをインポートし、すべてのイベントを iCal にインポートする方法、または単にカレンダー全体をインポートする方法はありますか? それは可能ですか?また、可能であればどのようにすればよいですか?

4

1 に答える 1

1

http://code.google.com/p/iphone-gcal/wiki/GettingStarted

それを試してみてください。

Googleカレンダーには、ここで利用できるパブリックAPIがあります。

JSONに精通している場合(またはstackoverflowを検索している場合)、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];
}

すべてのGoogleカレンダーを1つずつインポートします。

頑張ってください!

于 2013-01-18T04:44:06.320 に答える