UITableView, Multi Select and Swipe To Delete
Tuesday, November 29th, 2011I was having a problem recently with a UITableView, where the swipe-to-delete gesture wasn’t working. The documentation is pretty clear that your table will get the swipe to delete behaviour if you implement the tableView:commitEditingStyle:forRowAtIndexPath: method in your UITableViewDataSource delegate. So, in other words, implementing this one method in your data source should be enough [...]