小编典典

如何在 iOS 7 上的 UINavigationController 中禁用向后滑动手势

all

在 iOS 7 中,Apple
添加了新的默认导航行为。您可以从屏幕的左边缘滑动以返回导航堆栈。但在我的应用程序中,这种行为与我的自定义左侧菜单冲突。那么,是否可以在
UINavigationController 中禁用这个新手势?


阅读 81

收藏
2022-04-06

共1个答案

小编典典

我找到了一个解决方案:

目标-C:

if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
    self.navigationController.interactivePopGestureRecognizer.enabled = NO;
}

斯威夫特 3+:
self.navigationController?.interactivePopGestureRecognizer?.isEnabled = false

2022-04-06