Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hey guys, I have an NSArray of NSNumber objects that I have successfully sorted in ascending order using the following:

[myArray sortedArrayUsingSelector:@selector(compare:)]

However, I need to sort this in descending order. I take it that compare: only sorts in ascending order. While I can go about reversing the NSArray, I am curious as to whether or not there is a more simpler or more effective way of going about doing this.

Thanks!

EDIT: I found this question which provides a simple way to reverse iterate an NSArray:

for (id someObject in [myArray reverseObjectEnumerator])

This works fine, I guess it's a nice simple solution, but I'm curious as to whether or not there is a way to specify sorting in descending order.

share|improve this question
This answer is short, sweet and clever: stackoverflow.com/a/586529/999934 – Rob May 3 at 15:28

5 Answers

up vote 19 down vote accepted

Use a sort descriptor

NSSortDescriptor* sortOrder = [NSSortDescriptor sortDescriptorWithKey: @"self" ascending: NO];
return [myArray sortedArrayUsingDescriptors: [NSArray arrayWithObject: sortOrder]];
share|improve this answer
Thanks. I ended up using this and I like how it's really simple. – Jorge Israel Peña Aug 4 '10 at 21:41
@Blaenk: Hi, I've rolled back your edit because arrayWithObject: was not a typo. There really is such a method for NSArray. Also, the spaces after the colons are deliberate. – JeremyP Aug 5 '10 at 8:10
The typo was that you had arayWithObject, not arrayWithObject. Then I got carried away. But that's fine. – Jorge Israel Peña Aug 5 '10 at 20:33

Another way, imo, is also nice: write another reverseCompare with category:

@implementation NSNumber (Utility)

- (NSComparisonResult)reverseCompare:(NSNumber *)aNumber {
  return [aNumber compare:self];
}

The good thing is that you can reuse everywhere and don't have to write the loop with reverse iterate. The bad thing is that you have to write more code:)

share|improve this answer

There are a few ways:

  1. Write a comparison function and pass it to sortUsingFunction:context:.
  2. Use sortUsingComparator:, which takes a block. (Only available in Mac OS X 10.6 and later and iOS 4.0 and later.)
  3. Use sortUsingDescriptors:, and pass an array of at least one sort descriptor whose ascending property is false.

In the first two cases, your comparison should simply return the negation of what the comparator you normally use (e.g., compare:) returned. The last one involves less custom code, so it's what I'd use.

share|improve this answer

The Dr. Touch website has a nice implementation of a category on NSArray to create a self-sorting array. This could be modified to keep the sort in whatever order was appropriate.

share|improve this answer

comare selector has to return NSComparisonResult. It's actually your function, so you can write another function, that returns the opposite result to sort in descending order.

share|improve this answer
1  
Not necessarily. If the objects are instances of a built-in Cocoa class (such as NSString), you would have to category your custom comparison method onto the class. – Peter Hosey Aug 4 '10 at 5:15

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.