I created a fresh project with a core data template. then I added a employee entity with a firstName string attribute, and populated the persistent store with 100 employees and lots of different first names.
In the RootViewController where the FRC is created, I set the sectionNameKeyPath like this:
NSFetchedResultsController *frc = [[NSFetchedResultsController alloc]
initWithFetchRequest:fetchRequest
managedObjectContext:managedObjectContext
sectionNameKeyPath:@"firstName"
cacheName:@"Root"];
However, I never see any sections or titles. Probably I must activate this somewhere?