[Solved] Move the object in the array

[ad_1] If you want to move objects around within an array – you just remove an item from one location, and add it to another, like this : [self.images removeObjectAtIndex:index]; [self.images insertObject:object atIndex:newIndex]; [ad_2] solved Move the object in the array