I have a UIViewController that implements TableViews delegate and datasource protocols. Now I want to add \"swipe to delete\" gesture to cells.
UIViewController
In my experience, seems like you must have editing on UITableView set to NO for swiping to work.
editing
UITableView
NO
self.tableView.editing = NO;