[Solved] Move the object in the array
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]; solved Move the object in the array