romaonthego / REFrostedViewController

iOS 7/8 style blurred view controller that appears on top of your view controller.
MIT License
2.96k stars 494 forks source link

How to disable the pan while enter the inner Pages #141

Open lixiaoyu opened 9 years ago

lixiaoyu commented 9 years ago

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

SuperY commented 9 years ago

+1

lixiaoyu commented 9 years ago

I have solved it by replacing the panGestureRecognized delegate method to Controller you wanna eable

SuperY commented 9 years ago

It works. Thank u.

rnmano commented 8 years ago

How to disable panGestureRecognized inner page here is my code. self.rEFrostedViewController= [[REFrostedViewController alloc]init]; self.rEFrostedViewController.delegate=self; self.rEFrostedViewController.panGestureEnabled=NO;