I have a tableView with some questions that a user can reorder so I have set the property setEditing to YES
[questionTableView setEditing:YES animated:YES];
also I donot want my user to delete any of the rows neither add so I have returned the UITableViewEdtitingStyle to UITableViewCellEditingStyleNone; in its delegate function.
However, the cell has got a lot of space at the left which I need to remove. How can i do that ?
