Created
December 26, 2018 11:00
-
-
Save edwardean/036f6034c7bf434e42ac364b7149f2c4 to your computer and use it in GitHub Desktop.
禁用某个VC的手势滑动返回
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)viewWillAppear:(BOOL)animated | |
{ | |
[super viewWillAppear:animated]; | |
UIGestureRecognizer *popGesture = self.navigationController.interactivePopGestureRecognizer; | |
if ([popGesture isKindOfClass:[UIScreenEdgePanGestureRecognizer class]]) { | |
((UIScreenEdgePanGestureRecognizer *)popGesture).edges = UIRectEdgeNone; | |
} | |
} | |
- (void)viewWillDisappear:(BOOL)animated | |
{ | |
[super viewWillDisappear:animated]; | |
UIGestureRecognizer *popGesture = self.navigationController.interactivePopGestureRecognizer; | |
if ([popGesture isKindOfClass:[UIScreenEdgePanGestureRecognizer class]]) { | |
((UIScreenEdgePanGestureRecognizer *)popGesture).edges = UIRectEdge; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment