When I use [tableview setEditing:YES animated:YES]; to enable UITableViewCell reorder, the remove control appears too. How can I prevent that ?
When I use [tableview setEditing:YES animated:YES]; to enable UITableViewCell reorder, the remove control appears
Share
Implement
-tableView:editingStyleForRowAtIndexPath:in the table view delegate andreturn UITableViewCellEditingStyleNone.