Let's say I have a NSArray with 50-100 objects inside. How can I put the array in a random order?
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.
|
|
There are a lot of ways to do it, but most will involve simply generating random numbers. Perhaps you could use this technique using an NSMutableArray:
That would probably be the most efficient way. Sample code (not tested):
Also, you could use two NSMutableArray objects, and simply loop through while the first has objects, choose one randomly, and add it to the end of the other one. The in place method is probably faster though. |
|||||||||
|
Apparently there is no indexes for NSSet. Therefore, an NSArray object might be jumbled up when converted to NSSet and back. It's a hack solution, but it works (not sure about this). |
||||
|
|