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.

Can someone please show me the code for sorting an NSMutableArray? I have the following NSMutableArray:

NSMutableArray *arr = [[NSMutableArray alloc] init];

with elements such as "2", "4", "5", "1", "9", etc which are all NSString.

I'd like to sort the list in descending order so that the largest valued integer is highest in the list (index 0).

I tried the following:

[arr sortUsingSelector:@selector(compare:)];

but it did not seem to sort my values properly.

Can someone show me code for properly doing what I am trying to accomplish? Thanks!

share|improve this question

4 Answers

up vote 12 down vote accepted

It's pretty simple to write your own comparison method for strings:

@implementation NSString(compare)

-(NSComparisonResult)compareNumberStrings:(NSString *)str {
    NSNumber * me = [NSNumber numberWithInt:[self intValue]];
    NSNumber * you = [NSNumber numberWithInt:[str intValue]];

    return [you compare:me];
}

@end
share|improve this answer

You should use this method:

[arr sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];

in a NSArray or:

[arr sortUsingSelector:@selector(caseInsensitiveCompare:)];

in a "inplace" sorting NSMutableArray

The comparator should return one of this values:

  • NSOrderedAscending
  • NSOrderedDescending
  • NSOrderedSame
share|improve this answer
I tried that second way and here is the output of a sorted array: – CodeGuy Dec 29 '10 at 23:37
2, 2, 2, 2, 3, 3, 32, 4, 47, 477, 56, 7, 8 – CodeGuy Dec 29 '10 at 23:38
You need to replace the comparator given in the example, i didn't know what was you sorting "criteria" :) – HyLian Dec 30 '10 at 7:40

If the array's elements are just NSStrings with digits and no letters (i.e. "8", "25", "3", etc.), here's a clean and short way that actually works:

NSArray *sortedArray = [NSArray arrayWithArray:[unorderedArray sortedArrayUsingComparator:^(NSString* a, NSString* b) {
    return [a compare:b options:NSNumericSearch];
}]];

Done! No need to write a whole method that returns NSComparisonResult, or eight lines of NSSortDescriptor...

share|improve this answer
You need to declare a & b as id otherwise Xcode will produce an error : [unorderedArray sortedArrayUsingComparator:^(id a, id b) {...}]; – Martin Mar 8 at 15:56

use this link

and chage float to an int.for changing string into int use intValue.

This will help you.

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.