wangmchn / WMPageController

An easy solution to page controllers like NetEase News
MIT License
2.92k stars 628 forks source link

iOS10下崩溃问题 #545

Open iYeso opened 6 years ago

iYeso commented 6 years ago

WMPageController.m 447行 如果当前的导航控制器的interactivePopGestureRecognizer为nil 会崩溃 现在增加了一个判断用于屏蔽这个问题。

    for (UIGestureRecognizer *gestureRecognizer in scrollView.gestureRecognizers) {
        if (self.navigationController.interactivePopGestureRecognizer != nil) {
            [gestureRecognizer requireGestureRecognizerToFail:self.navigationController.interactivePopGestureRecognizer];
        }else {
//            NSLog(@"导航控制器的interactivePopGestureRecognizer手势为nil");
        }
    }

请大神帮忙看下 系统iOS10.3.1

MQL9011 commented 6 years ago

我也遇到这个问题, 有解决办法吗 @SmallTwoInn