最佳答案
我从 给你得到了相反的问题。
在 iOS7默认情况下,UINavigationController堆栈的后滑动姿态可以弹出现在的 ViewController。现在我只是制服所有的 self.navigationItem.leftBarButtonItem风格的所有 ViewControllers。
密码如下:
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithImage:LOADIMAGE(@"back_button") style:UIBarButtonItemStylePlain target:self action:@selector(popCurrentViewController)];
在此之后,navigationController.interactivePopGestureRecognizer就被禁用了。如何在不删除自定义 leftBarButtonItem的情况下启用流行手势?
谢谢!