I am developing an application, I have a UITableView, I use the following code to control reordering:
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{ return YES; } - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath { return UITableViewCellEditingStyleNone; } -(NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath{ if(proposedDestinationIndexPath.section==0 && proposedDestinationIndexPath!=sourceIndexPath){ return proposedDestinationIndexPath; } else{ return sourceIndexPath; } } -(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath{ return YES; } -(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{
It works fine, but I want to change the position of the Reorder button and implement something like the Music Queue list on iOS 8.4.
I want to change the reorder button so that it is in the scroll list whose contents are in the cell. Screenshot: 
Thanks in advance:)
source share