Skip to content

Instantly share code, notes, and snippets.

@edwardean
Created December 26, 2018 11:00
Show Gist options
  • Save edwardean/036f6034c7bf434e42ac364b7149f2c4 to your computer and use it in GitHub Desktop.
Save edwardean/036f6034c7bf434e42ac364b7149f2c4 to your computer and use it in GitHub Desktop.
禁用某个VC的手势滑动返回
- (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