I am trying to figure out if there is a simple way to display the entire section header title in the index bar of a table view.

At the moment I have just the first letter of the core data attribute specified in sectionNameKeyPath - pretty much just the boilerplate code.

I am thinking that i will need to create another array for sectionIndexTitlesForTableView from the fetchedResultsController.

Am I missing something obvious?

Thanks!

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Add the following:

- (NSString *)controller:(NSFetchedResultsController *)controller sectionIndexTitleForSectionName:(NSString *)sectionName {
    return sectionName;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.