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 need to reverse my NSArray.

As an example:

[1,2,3,4,5] must become [5,4,3,2,1]

What is the best way to achieve this?

share|improve this question
1  
It's also worth looking at this: http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/Collectio‌​ns/Articles/sortingFilteringArrays.html which tells you how to sort an array in reverse order (which is commonly what you are doing, for instance in using an array derived from NSDictionary#allKeys, and you want reverse date/alpha order to serve as grouping for UITable on iPhone, etc). – user201468 Nov 3 '09 at 8:01

7 Answers

up vote 132 down vote accepted
@implementation NSArray (Reverse)

- (NSArray *)reversedArray {
    NSMutableArray *array = [NSMutableArray arrayWithCapacity:[self count]];
    NSEnumerator *enumerator = [self reverseObjectEnumerator];
    for (id element in enumerator) {
        [array addObject:element];
    }
    return array;
}

@end

@implementation NSMutableArray (Reverse)

- (void)reverse {
    if ([self count] == 0)
        return;
    NSUInteger i = 0;
    NSUInteger j = [self count] - 1;
    while (i < j) {
        [self exchangeObjectAtIndex:i
                  withObjectAtIndex:j];

        i++;
        j--;
    }
}

@end
share|improve this answer
3  
One of the bad things about Fast Enumeration is that new guys like me don't learn about cool things like reverseObjectEnumerator. Pretty neat way to do it. – Brent Royal-Gordon Feb 25 '09 at 15:34
2  
Because C++-iterators have an even worse syntax, they are ugly. – Georg Schölly Apr 22 '09 at 10:39
2  
Shouldn't you copy the array before returning it? – LucasTizma Feb 8 '12 at 3:31
1  
There is a bug in the mutable array if [self count] is 0 since you are using unsigned integers. – Mark Apr 9 '12 at 16:47
3  
@Georg: I disagree with you on this one. If I see a method that returns an immutable object, I expect it to actually be returning an immutable object. Having it appear to return an immutable object but actual return a mutable object is a dangerous practice to get into. – Christine Jul 2 '12 at 22:46
show 9 more comments

There is a much easier solution, if you take advantage of the built-in reverseObjectEnumerator method on NSArray, and the allObjects method of NSEnumerator:

NSArray* reversedArray = [[startArray reverseObjectEnumerator] allObjects];

Because allObjects is documented as returning an array with the objects that have not yet been traversed with nextObject, it strongly implies that those objects will be delivered in order of the enumerator. It even points out that after calling allObjects, the next object on the enumerator will be nil.

share|improve this answer
9  
Now that's clever! – Georg Schölly Feb 25 '09 at 15:45
But, as you said yourself, Apple doesn't guarantee that the array is in the correct order. (Though I think it is.) – Georg Schölly Feb 25 '09 at 15:49
4  
There's an answer further down here by Matt Williamson that ought to be a comment: Don't use danielpunkass's solution. I used it thinking it was a great shortcut, but now I've just spent 3 hours trying to figure out why my A* algorithm was broken. It's because it returns the wrong set! – Georg Schölly Mar 12 '10 at 6:23
1  
What do mean by 'wrong set'? A array that is not in reverse order? – Simo Salminen Apr 19 '10 at 5:38
13  
I'm no longer able to reproduce that bug. It could have been my error. This is a very elegant solution. – Matt Williamson Feb 17 '11 at 22:05
show 1 more comment

DasBoot has the right approach, but there are a few mistakes in his code. Here's a completely generic code snippet that will reverse any NSMutableArray in place:

/* Algorithm: swap the object N elements from the top with the object N 
 * elements from the bottom. Integer division will wrap down, leaving 
 * the middle element intact if count is odd 
 */
for(int i = 0; i < [array count] / 2; i++) {
    int j = [array count] - i - 1;

    id temp = [[array objectAtIndex:i] retain];

    [array replaceObjectAtIndex:i withObject:[array objectAtIndex:j]];
    [array replaceObjectAtIndex:j withObject:temp];

    [temp release];
}

You can wrap that in a C function, or for bonus points, use categories to add it to NSMutableArray. (In that case, 'array' would become 'self'.)

If you only have a regular NSArray, there's no way to reverse it in place, because NSArrays cannot be modified. But you can make a reversed copy:

NSMutableArray * copy = [NSMutableArray arrayWithCapacity:[array count]];

for(int i = 0; i < [array count]; i++) {
    [copy addObject:[array objectAtIndex:[array count] - i - 1]];
}
share|improve this answer
Does that work? I don't think NSMutableArray has a setObject:atIndex: method. Thanks for the suggested fix for the loop though, and using generic id instead of NSNumber. – Himadri Choudhury Feb 25 '09 at 15:37
You're right, I caught that when I read some of the other examples. Fixed now. – Brent Royal-Gordon Feb 25 '09 at 15:37
1  
[array count] is called every time you loop. This is very costly. There's even a function which changes the positions of two objects. – Georg Schölly Feb 25 '09 at 15:44
+1 for [array count] - i - 1, I used it in some other way – NAZIK Apr 19 at 10:55

After reviewing the other's answers above and finding Matt Gallagher's discussion here

I propose this:

NSMutableArray * reverseArray = [NSMutableArray arrayWithCapacity:[myArray count]]; 

for (id element in [myArray reverseObjectEnumerator]) {
    [reverseArray addObject:element];
}

As Matt observes:

In the above case, you may wonder if -[NSArray reverseObjectEnumerator] would be run on every iteration of the loop — potentially slowing down the code. <...>

Shortly thereafter, he answers thus:

<...> The "collection" expression is only evaluated once, when the for loop begins. This is the best case, since you can safely put an expensive function in the "collection" expression without impacting upon the per-iteration performance of the loop.

share|improve this answer

Georg Schölly's categories are very nice. However, for NSMutableArray, using NSUIntegers for the indices results in a crash when the array is empty. The correct code is:

@implementation NSMutableArray (Reverse)

- (void)reverse {
    NSInteger i = 0;
    NSInteger j = [self count] - 1;
    while (i < j) {
        [self exchangeObjectAtIndex:i
                  withObjectAtIndex:j];

        i++;
        j--;
    }
}

@end
share|improve this answer

if your Array is myArray to which you want to reverse

NSArray *array2=[myArray mutableCopy];

   NSArray* reversed = [[array2 reverseObjectEnumerator] allObjects];

   [myarray removeAllObjects];

myarray =[reversed mutableCopy];

Now you can find myArray as the reversed Array .

share|improve this answer

I don't know of any built in method. But, coding by hand is not too difficult. Assuming the elements of the array you are dealing with are NSNumber objects of integer type, and 'arr' is the NSMutableArray that you want to reverse.

int n = [arr count];
for (int i=0; i<n/2; ++i) {
  id c  = [[arr objectAtIndex:i] retain];
  [arr replaceObjectAtIndex:i withObject:[arr objectAtIndex:n-i-1]];
  [arr replaceObjectAtIndex:n-i-1 withObject:c];
}

Since you start with a NSArray then you have to create the mutable array first with the contents of the original NSArray ('origArray').

NSMutableArray * arr = [[NSMutableArray alloc] init];
[arr setArray:origArray];

Edit: Fixed n -> n/2 in the loop count and changed NSNumber to the more generic id due to the suggestions in Brent's answer.

share|improve this answer
Isn't this missing a release on c? – Clay Bridges Jul 15 '10 at 21:50

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.