iphone上的日历应用程序

时间:2011-07-14 15:17:44

标签: iphone objective-c cocoa-touch ios4 eventkit

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

NSArray *events = [eventDB eventsMatchingPredicate:eventsForThisYear];

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

1 个答案:

答案 0 :(得分:1)

您似乎正在使用iOS上无法使用的 Calendar Store 框架。在iOS中,您需要使用EventKit

Here是一个教程。还有很多其他在线提供。