开发者

Sorting a NSSet of NSManagedObjects by attribute

Given an NSSet that contains objects that are a subclass NSManagedObject with a string attribute called name, how can I sort the set by name? Is this where I would use an N开发者_开发百科SPredicate?

Thank you!


No, but you'd use an NSSortDescriptor.

You'd use the sortedArrayUsingDescriptors: method like this:

NSSortDescriptor *nameDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES];
NSArray *sorted = [yourSet sortedArrayUsingDescriptors:[NSArray arrayWithObject:nameDescriptor]];


By mentioning NSPredicate, I feel as though the OP wanted to sort the set as part of the executed fetch. Whether he meant this or not, here is an example of this. Say you have a to-many inverse relationship between an Employee entity and a Department entity i.e. a department contains many employees. Given you've fetched the department already, fetch the employees in the department and sort them by first name:

Using MagicalRecord:

Department *department = someFetchedDepartment; 
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"department == %@", department];
NSArray *sortedEmployees = [Employee MR_findAllSortedBy:@"firstName" ascending:YES withPredicate:predicate];

Without MagicalRecord:

NSFetchRequest *request = [[NSFetchRequest alloc] init];    

NSEntityDescription *employeeEntity = [NSEntityDescription @"Employee" inManagedObjectContext:self.context];
[request setEntity:employeeEntity];

Department *department = someFetchedDepartment; 
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"department == %@", department];
[request setPredicate:predicate];

NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"firstName" ascending:ascending];
[request setSortDescriptors:@[sortDescriptor]];

NSError *error = nil;
NSArray *sortedEmployees = [self.context executeFetchRequest:request error:&error];
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜