1

我正在尝试将 Kal 日历应用到我自己的项目中。我已经下载了 github 项目的副本并在模拟器上运行它。一切正常,并显示来自模拟器日历的数据。

但是当我在真实设备上测试它时。它没有获取数据,它给了我以下错误。

CalendarApp[1024:1103] Predicate call to calendar daemon failed: Error Domain=EKCADErrorDomain Code=1013 "The operation couldn’t be completed. (EKCADErrorDomain error 1013.)"

这就是我的 fetch 的样子。

- (void)presentingDatesFrom:(NSDate *)fromDate to:(NSDate *)toDate delegate:(id<KalDataSourceCallbacks>)delegate
{
  // asynchronous callback on the main thread
  [events removeAllObjects];
  NSLog(@"Fetching events from EventKit between %@ and %@ on a GCD-managed background thread...", fromDate, toDate);
  dispatch_async(eventStoreQueue, ^{
    NSDate *fetchProfilerStart = [NSDate date];
    NSPredicate *predicate = [eventStore predicateForEventsWithStartDate:fromDate endDate:toDate calendars:nil];
    NSArray *matchedEvents = [eventStore eventsMatchingPredicate:predicate];
    dispatch_async(dispatch_get_main_queue(), ^{
      NSLog(@"Fetched %d events in %f seconds", [matchedEvents count], -1.f * [fetchProfilerStart timeIntervalSinceNow]);
      [events addObjectsFromArray:matchedEvents];
      [delegate loadedDataSource:self];
    });

有谁能够帮我?

提前致以诚挚的问候和感谢

4

1 回答 1

0

好的,所以它与用户权限有关。我在这里找到了答案。

如何在 iOS 6 中获取默认日历的名称/ID

于 2012-11-20T09:52:01.383 回答