屏幕左边缘右滑手势返回上一页

self.navigationController.interactivePopGestureRecognizer.delegate = (id)self;

感谢http://www.jianshu.com/p/78fc64d387ec

- (void)viewDidAppear:(BOOL)animated{
[super viewDidAppear:animated];

// 禁用 iOS7 返回手势
if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
self.navigationController.interactivePopGestureRecognizer.enabled = NO;
}
}

- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];

// 开启

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

你可能感兴趣的:(屏幕左边缘右滑手势返回上一页)