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?
|
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? |
|||||
|
|
|||||||||||||||||||||
|
|
There is a much easier solution, if you take advantage of the built-in
Because |
|||||||||||||||||||
|
|
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:
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:
|
|||||||||||
|
|
After reviewing the other's answers above and finding Matt Gallagher's discussion here I propose this:
As Matt observes:
Shortly thereafter, he answers thus:
|
|||
|
|
|
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:
|
|||
|
|
|
if your Array is myArray to which you want to reverse
Now you can find myArray as the reversed Array . |
|||
|
|
|
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.
Since you start with a NSArray then you have to create the mutable array first with the contents of the original NSArray ('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. |
||||
|
|