Let's say I have a Core Data entity with two NSNumber attributes: value1 and value2.
I want to construct a NSFetchedResultsController so I can display my attributes in a table view. The table view should be sorted by totalValue witch is calculated by summing value1 and value2.
totalValue = [NSNumber numberWithInt:([value1 intValue] + [value2 intValue])];
totalValue is not stored in the database because it easily be derived from value1 and value2.
I can sort the NSFetchedResultsController by two independent attributes, but how do I sort it with two dependent attributes like sorting by totalValue, the combination of value1 and value2?
I can subclass NSManagedObject but can I create a NSSortDescriptor so it sorts on a method in my subclassed NSManagedObject?
I know I could easily store the totalValue in the database, but what if I wanted to sort locations based on distance from the users location? Than storing the distance wouldn't be an option.