tableView.showsReorderControl = YES; // to show reordering control
To dissmiss delete control, in your UITableViewDelegate add
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
return UITableViewCellEditingStyleNone;
}