I announced that my fetchedResultsController is like this
NSFetchedResultsController *fetchController = [[NSFetchedResultsController alloc]
initWithFetchRequest:fetchRequest managedObjectContext:managedObjectContext
sectionNameKeyPath:@"date" cacheName:nil];
But when I click on UISegmentedControl, I want to change sectionNameKeyPath as @ "title".
Do you know a way to do this?
thank
source
share