美文网首页
JXCategoryView侧滑返回失效

JXCategoryView侧滑返回失效

作者: hashakey | 来源:发表于2022-09-22 11:00 被阅读0次

    直接上代码

    - (JXCategoryListContainerView *)listContainerView {
        if (!_listContainerView) {
            _listContainerView = [[JXCategoryListContainerView alloc] initWithType:JXCategoryListContainerType_ScrollView delegate:self];
            //一句解决侧滑返回失效问题
            [_listContainerView.scrollView.panGestureRecognizer requireGestureRecognizerToFail:self.navigationController.interactivePopGestureRecognizer];
        }
        return _listContainerView;
    }
    

    相关文章

      网友评论

          本文标题:JXCategoryView侧滑返回失效

          本文链接:https://www.haomeiwen.com/subject/khswortx.html