我正在使用 gdata api 将 iphone 应用程序与谷歌日历整合在一起。完成事件添加、删除、获取、更新
但提醒未添加到日历事件中
我的代码是:
NSDate *anHourFromNow = [NSDate dateWithTimeIntervalSinceNow:60*60];
GDataDateTime *startDateTime = [GDataDateTime dateTimeWithDate:[NSDate date] timeZone:[NSTimeZone systemTimeZone]];
GDataDateTime *endDateTime = [GDataDateTime dateTimeWithDate:anHourFromNow timeZone:[NSTimeZone systemTimeZone]];
GDataReminder *reminder = [GDataReminder 提醒];
[提醒设置分钟:@“10”];
GDataWhen *when = [GDataWhen whenWithStartTime:startDateTime endTime:endDateTime];
[当添加提醒:提醒];
[事件添加时间:何时];
如果(事件)
{ // 发布事件。
NSURL *altLinkURL = [[日历备用链接] URL];
[service fetchEntryByInsertingEntry:event forFeedURL:altLinkURL delegate:nil didFinishSelector:nil]; }
使用此代码事件已添加到日历中,但当我在 Google 日历中手动查看此事件时未出现提醒