NSFetchedResultsController v.s. UILocalizedIndexedCollation

Since you cannot sort on a transient property, the solution I implemented is… Create a string attribute called “sectionKey” for each sortable attribute within each entity in your Core Data model. The sectionKey attribute will be a calculated value derived from a base attribute (e.g., a name or title attribute). It must be persisted because … Read more