You will not move cells. The model for representing the table is an array. Move things between arrays and tell the tables that their model has changed.
id somePartOfMyModel = [self.arrayA objectAtIndex:someIndexPath.row]; [self.arrayA removeObject:somePartOfMyModel]; [self.arrayB addObject:somePartOfMyModel];
source share