How to remove gesture for RESideMenu from UIView

67 Views Asked by At

I want to remove gesture recogniser for RESidemenu controller form particular UIView. how can we remove it.

i have removed all gestures from view, but its not working fine.

for (UIGestureRecognizer *gesture in self.view.gestureRecognizers)
{
    [self.view removeGestureRecognizer:gesture];
}
0

There are 0 best solutions below