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.
NSFetchedResultsController with property name as sectionNameKeyPath allows retrieving managed objects by Core Data retrieved
Share
NSFetchedResultsController grouping is special and specific to Core Data objects. You’ll had to do any grouping logic for EKEventStore data manually.