1
NSPredicate *eventsForThisYear = [NSPredicate eventPredicateWithStartDate:startDate endDate:endDate calendars:[[CalCalendarStore defaultCalendarStore] calendars]];

NSArray *events = [eventDB eventsMatchingPredicate:eventsForThisYear];

在以下代码中,我收到一条错误消息,指出在 xcode 4.2 中未声明“CalCalendarStore”(在此函数中首次使用)。我没有找到任何CalCalendarStore框架。

4

1 回答 1

1

您似乎正在使用 iOS 上不可用的日历商店框架。在 iOS 中,您需要使用EventKit.

Here的教程。网上还有很多其他的。

于 2011-07-14T15:35:57.843 回答