I'm having a bit of a problem with a clash of functions of sorts. I am using SWRevealViewController to create a sidebar and this works with the following line:
self.view.addGestureRecognizer(self.revealViewController().panGestureRecognizer());
However, this is working on the same page as a TableView
where swiping left on the rows allows a delete button to function.
IF I have the panGestureRecogniser working then the delete button on the table cells doesn't work because it's difficult to swipe precisely for it. If I comment out this line of code, then the swipe for delete works perfectly.
Is there any way I can have both these features working seamlessly together?
Thanks