我注意到一些奇怪的东西,可能是UINavigationController中的一个错误.当你覆盖
-navigationController:animationControllerForOperation:fromViewController:toViewController:
-navigationController:animationControllerForOperation:fromViewController:toViewController:
并返回nil(对于默认的动画行为),拖放回去的手势不再有效.此方法的文档说明如果要使用标准导航控制器转换,则应返回“nil”.我对此的解读是,返回nil不应该阻止默认行为的发生.
我还发现如果导航控制器的interactivePopGestureRecognizer.delegate为gestureRecognizer返回YES:shouldRecognizeSimultaneouslyWithGestureRecognizer:
流行手势再次起作用.但是,这种解决方法存在风险,因为我们正在踩踏安装的默认委托,这是一个_UINavigationInteractiveTransition.
有没有我可以覆盖animationController方法,同时保留默认的拖拽回去手势?
这个question是相关的.
解决方法
如果您已经将UINavigationController子类化,那么最简单的修复方法如下(iOS 9.3,Swift 2.2):
override func viewDidLoad() { super.viewDidLoad() interactivePopGestureRecognizer?.delegate = nil }
或者,在UIViewController的任何其他实例中:
override func viewDidLoad() { super.viewDidLoad() navigationController?.interactivePopGestureRecognizer?.delegate = nil }
实现委托方法navigationController(_:animationControllerFor:from:to :)禁用导航控制器的交互式弹出手势识别器,但将手势委托设置为nil会重新启用它.
如果您只想在特定情况下启用手势,请参阅this answer.