Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm struggling with trying to sort an array of dictionaries.

My dictionaries have a couple of values of interest, price, popularity etc.

Any suggestions?

share|improve this question

4 Answers

up vote 81 down vote accepted

Use NSSortDescriptor like this..

NSSortDescriptor *descriptor = [[NSSortDescriptor alloc] initWithKey:@"interest"  ascending:YES];
    [stories sortedArrayUsingDescriptors:[NSArray arrayWithObjects:descriptor,nil]];
    recent = [stories copy];

stories is the array you want to sort. recent is another mutable array which has sorted dictionary values. Change the @"interest" with the key value on which you have to sort.

All the best

share|improve this answer
2  
+1 This is by far the simplest method – Dave DeLong Mar 6 '10 at 19:16
8  
This is good, but it does leak. 1) the sort descriptor should be released or autoreleased, and 2) The copy call is not needed the line can be deleted. – Tom Andersen Sep 8 '10 at 20:23
3  
NSSortDescriptor *descriptor = [[[NSSortDescriptor alloc] initWithKey:@"interest" ascending:YES] autorelease]; [stories sortUsingDescriptors:[NSArray arrayWithObjects:descriptor,nil]]; – Tom Andersen Sep 8 '10 at 20:24
1  
You can use NSSortDescriptor *descriptor = [NSSortDescriptor sortDescriptorWithKey:@"interest" ascending:YES]; – maxcanna Nov 17 '11 at 15:35
1  
recent = [[stories sortedArrayUsingDescriptors:[NSArray arrayWithObjects:descriptor,nil]] copy]; – J3RM Aug 4 '12 at 7:32
show 4 more comments
[array sortUsingDescriptors:[NSArray arrayWithObjects:[NSSortDescriptor sortDescriptorWithKey:@"YOUR-KEY" ascending:YES], nil]];

I don't really want to break it into multiple lines. It's already simple enough for me.

share|improve this answer
NSSortDescriptor *descriptor = [NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES]; [resultArray1 sortUsingDescriptors:[NSArray arrayWithObjects:descriptor,nil]]; – johndpope Aug 20 '12 at 7:51
Better answer .... !! – The Tiger Oct 19 '12 at 11:13

Update , sortUsingDescriptors is now sortedArrayUsingDescriptors

So, its like:

items  = [items sortedArrayUsingDescriptors:[NSArray arrayWithObjects:descriptor,nil]];
share|improve this answer

Write a sort function that compares the relevant fields in two dictionaries. When you have this version you can for example use NSArray#sortedArrayUsingFunction:context: to sort your array.

See http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSArray_Class/NSArray.html#//apple_ref/doc/uid/20000137-BBCHBAHB

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.