In my app I want to allow the user to press a button that enables them to change the order of the tableview cells.
I am using [tableView setEditing:YES animated:YES];
However, when the user presses the button and then scrolls, the cells that were not visible when the button was pressed do not have editing mode enabled.
I read this in Apple's documentation: "When you call this method with the value of editing set to true, the table view goes into editing mode by calling setEditing(_:animated:) on each visible UITableViewCell object."
Is there a way to enable all cells to be in editing mode despite not being visible when editing mode is enabled?
Here are some snapshots: