REFrostedViewController
REFrostedViewController copied to clipboard
How to disable the pan while enter the inner Pages
I wanna to disable the pan Gesture in inner pages, I tried to set the panGestureEnabled to NO when enter inner page,and Yes back,but it still disabled,How can I solve it. Main purpose is want to keep the edgePanGesture of the NavigationController ,they conflicts
+1
I have solved it by replacing the panGestureRecognized delegate method to Controller you wanna eable
It works. Thank u.
How to disable panGestureRecognized inner page here is my code. self.rEFrostedViewController= [[REFrostedViewController alloc]init]; self.rEFrostedViewController.delegate=self; self.rEFrostedViewController.panGestureEnabled=NO;