How to return the section title in a UITableView with Core Data
Our NSFetchedResultsController can take care of this too:
– (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
if ([[self.fetchedResultsController sections] count] > 0) {
id <NSFetchedRes…