Is there any way to remove the minus sign when in editing mode and displaying only the reorder icon?
Trying since long time. Somehow succeeded in removing the indentation of table but still failed to remove the minus sign.
Also i want the reorder icon appear permanently on screen so the table view will always be in editing mode
Is there any option to do this???Please help….
I’m not sure you can do this (I don’t think I have ever seen it implemented) but if it were to work I think you do this by returning
UITableViewCellEditingStyleNoneas the cell’s editing style in- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPathAs long as you have
and
defined in the UITableViewDelegate the reordering controls should display when you enter edit mode.
To start in editing style call
after your view gets loaded