1

NSFetchedResultsController with property name as sectionNameKeyPath allows retrieving managed objects by Core Data retrieved as group sections. I am looking for a similar method of doing this for fetching Calendar Events via EKEventStore proxy class, to achieve a group by date to create an agenda view of event grouped by date. I am currently doing this in code wondering if there is a way to do this automatically.

4

1 回答 1

1

NSFetchedResultsController grouping is special and specific to Core Data objects. You'll had to do any grouping logic for EKEventStore data manually.

于 2011-10-22T20:18:25.137 回答