I am running into a bit of trouble and I was wondering if someone could provide some guidance.
I am attempting to create section headers with the following order: [\
The NSSortDescriptor
constructor that you're using attempts to call the specified selector on the objects held at the property named @"states"
. I'm not sure what this value is, but it looks like they might be NSSortDescriptor
objects based on the error you're seeing.
Instead of trying to find a selector on an object which may or may not exist, use the block constructor:
You should also really consider rewriting your comparison with integers or something to make it smaller:
static NSArray *stateOrder = @[@"Push", @"Busy", @"Finished", @"Cancelled"];
NSSortDescriptor *sortStates = [NSSortDescriptor sortDescriptorWithKey:@"states"
ascending:NO
comparator:^(id obj1, id obj2) {
NSInteger state1 = [stateOrder indexOfObject:obj1];
NSInteger state2 = [stateOrder indexOfObject:obj2];
if (state1 < state2) {
return (NSComparisonResult)NSOrderedAscending;
} else if (state1 > state2) {
return (NSComparisonResult)NSOrderedDescending;
}
return (NSComparisonResult)NSOrderedSame;
}];
According to the documentation custom sort doesn't work with SQLite persistent store:
The SQL store, on the other hand, compiles the predicate and sort descriptors to SQL and evaluates the result in the database itself. This is done primarily for performance, but it means that evaluation happens in a non-Cocoa environment, and so sort descriptors (or predicates) that rely on Cocoa cannot work. The supported sort selectors are compare: and caseInsensitiveCompare:, localizedCompare:, localizedCaseInsensitiveCompare:, and localizedStandardCompare: (the latter is Finder-like sorting, and what most people should use most of the time). In addition you cannot sort on transient properties using the SQLite store.
So it seems you can't simply force NSFetchedResultsController
to display sections in other than alphabetical order.
But you can use a workaround. Add additional, persistent attribute of integer type to your entity (let's call it sectionOrder
). Set its value according to the states
property (so it will be 0 for "Push"
, 1 for "Busy"
etc.) You can do that in awakeFromInsert
method, for example.
Then use @"sectionOrder"
as both sectionNameKeyPath
and the keypath in sort descriptor. You can set section titles to be "Push", "Busy" etc. using this UITableViewDataSource
method:
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
id <NSFetchedResultsSectionInfo> sectionInfo = [[self.controller sections] objectAtIndex:section];
return [sectionInfo.objects.firstObject name];
}
Credits to this excellent answer.