iOS 7 disable the swipe back

boh*_*han 8 gesture ios

In iOS apps, there is a default gesture that swipe from the left edge to right the app navigationController will pop view controller.

But is there a way to disable it for specific view?

Bil*_*een 29

您可以通过公共API禁用它,请参阅UINavigationController类参考

  //iOS7 Customization, swipe to pop gesture
  if ([navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
      navigationController.interactivePopGestureRecognizer.enabled = NO;
  }
Run Code Online (Sandbox Code Playgroud)

此外,您可以在需要时切换回以前的状态