Viktor Starikov

Results 2 comments of Viktor Starikov

In my case while the user is swiping a table cell, when [tableView reloadData] occurs, swiping stops working.

Fixed this by adding following code before [tableview reloadData]: ``` for (UIView *view in self.tableView.subviews) { for (UIView *cell in view.subviews) { for (UIGestureRecognizer* gr in cell.gestureRecognizers) { gr.enabled =...