iOS navigationController自定义返回后系统

2016-11-04  本文已影响0人  笨鸟不飞飞

环境
Xcode7.2 iOS10
在Push后加上
VC.navigationController.interactivePopGestureRecognizer.delegate = nil;

    [self.viewController.navigationController pushViewController:VC animated:YES];
    VC.navigationController.interactivePopGestureRecognizer.delegate = nil;

或者在viewDidLoad方法里写

- (void)viewDidLoad {
 [super viewDidLoad]; //重点 
  self.navigationController.interactivePopGestureRecognizer.delegate = nil;
}

因为覆盖了系统的返回按钮事件,系统将会通过代理禁用这个滑动返回功能,提前取消系统的delegate,这样滑动返回功能就OK了。

上一篇下一篇

猜你喜欢

热点阅读