How does one resort an NSMutableArray using an index?
I would like to take an index e.g. 9 and everything up to 9, 0 – 8, needs to be put at the end of the array so the array would look something like this.
9, 10, 11, 12, 13, 0, 1, 2, 3, 4, 5, 6, 7, 8
in terms of the positioning.
How is this done in objective C?
Thanks
If you just want to move objets at index 0-8 to the end of the array, that’s quite easy: