環(huán)境
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]; //重點(diǎn)
self.navigationController.interactivePopGestureRecognizer.delegate = nil;
}
因?yàn)楦采w了系統(tǒng)的返回按鈕事件戳晌,系統(tǒng)將會(huì)通過代理禁用這個(gè)滑動(dòng)返回功能,提前取消系統(tǒng)的delegate痴柔,這樣滑動(dòng)返回功能就OK了沦偎。