4
if ([eventStore.calendars count] == 0)   
    { 
        NSLog(@"No calendars are found.");
        return NO;
    }
 EKCalendar *targetCalendar = nil;
 /* Try to find the calendar that the user asked for */
 for (EKCalendar *thisCalendar in eventStore.calendars){ line2
     if ([thisCalendar.title isEqualToString:paramCalendarTitle] &&
         thisCalendar.type == paramCalendarType){
        targetCalendar = thisCalendar;
        break;
     }
}

第 1 行和第 2 行出现错误:“不推荐使用日历:在 IOS 6 中首先不推荐使用”
如何解决?

4

1 回答 1

5

相反,您必须使用以下方法。

- (NSArray *)calendarsForEntityType:(EKEntityType)entityType;


NSArray *cals = [eventStore calendarsForEntityType: EKEntityTypeEvent];

并使用 line2 中的数组cals

在此处查看文档

于 2013-01-21T12:23:59.493 回答