NSArray from NSSet - Do I have to sort it myself?
Asked Answered
H

2

32

I've got data in an NSSet, and I need to get it into an NSArray.

Do I need to sort it myself (again, this came from Core Data) or can I get it out in a sorted order?

Hendeca answered 20/4, 2010 at 4:47 Comment(1)
Part of the answer is that you can't get an NSArray out of a set in sorted order, so either you've got to sort it yourself, or when you get the MutableArray out of Core Data hang on to a copy once you build the set, so you can use that sorted copy where necessary.Hendeca
C
77

You can specify a sort when you retrieve data with an NSFetchRequest by setting the sortDescriptors property to an array of NSSortDescriptors. But if you already have it in an NSSet and don't want to make another fetch request, you can use:

[[theSet allObjects] sortedArrayUsingDescriptors:sortDescriptors];

It'll create an interim NSArray when you call allObjects and then another sorted array afterwards, so it's not 100% efficient, but the overhead should be negligible for reasonably-sized data sets (and certainly less than the cost of sorting).

Edit

Actually, I was wrong - NSSet has the sortedArrayUsingDescriptors: method too. So you can just call [theSet sortedArrayUsingDescriptors:descriptors] and do it all in one go.

Caul answered 20/4, 2010 at 4:57 Comment(1)
So with the descriptor : 'NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES]; NSArray *sortedArray = [theSet sortedArrayUsingDescriptors:@[sortDescriptor]];'Communistic
S
8

You've got to sort it yourself, but it's not very hard...

NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Sprocket" inManagedObjectContext:managedObjectContext];
[request setEntity:entity];

NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"sortVariable" ascending:YES];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];   
[request setSortDescriptors:sortDescriptors];

NSError *error;
NSMutableArray *mutableFetchResults = [[managedObjectContext executeFetchRequest:request error:&error] mutableCopy];    
self.sprocketArray = mutableFetchResults;

[sortDescriptors release];
[sortDescriptor release];
[mutableFetchResults release];
[request release];
Sandbag answered 20/4, 2010 at 4:58 Comment(1)
you are saying that the OP would have to sort the data himself but you are providing a sample that is using CoreData's NSSortDecriptior functionality -- I would rephrase the answer and say; let CoreData do the sorting for you while fetching the dataIntersex

© 2022 - 2024 — McMap. All rights reserved.