美文网首页
MMDrawerController 侧滑栏与内容ScrollV

MMDrawerController 侧滑栏与内容ScrollV

作者: lwhldy | 来源:发表于2017-02-07 17:54 被阅读0次

    重新编辑排版,请移至MMDrawerController 侧滑栏与内容ScrollView滑动手势冲突 获得更好的阅读体验 

    起因:公司有个项目包含左边侧滑栏,内容是一个CollectionView嵌套多个View

    侧滑栏用的是MMDrawerController,感谢!

    问题出现在边缘侧滑的时候想调出侧滑栏,手势与Collectiuonview的pan手势冲突了。

    网上google了很多答案,看到一个朋友给了一个思路。在中间视图左侧加一个透明的customView,手势在customView才会触发侧滑抽屉事件,万幸MMDrawerController的作者提供了自定义手势响应视图的block,不能再感谢。如下:

    ```

    myDrawerController setGestureShouldRecognizeTouchBlock:^BOOL(MMDrawerController *drawerController, UIGestureRecognizer *gesture, UITouch *touch) {

            BOOLshouldRecognizeTouch =NO;

            if (drawerController.openSide == MMDrawerSideNone && [gesture isKindOfClass:[UIPanGestureRecognizer class]]) {

                UIView* customView = [drawerController.centerViewController myCustomSubview];

                CGPointlocation = [touchlocationInView:customView];

                shouldRecognizeTouch = (CGRectContainsPoint(customView.bounds, location)

            }

            returnshouldRecognizeTouch;

        }];

    ```

    在此之前需要注意的是,MMDrawerController需要设置侧滑模式为MMOpenDrawerGestureModeCustom:

    ``[self.drawerControllersetOpenDrawerGestureModeMask:MMOpenDrawerGestureModeCustom];``

    自己项目的代码:

    ``//设置手势触发的View

    [self.drawerControllersetGestureShouldRecognizeTouchBlock:^BOOL(MMDrawerController*drawerController,UIGestureRecognizer*gesture,UITouch*touch) {

    BOOLshouldRecognizeTouch =NO;

    if(drawerController.openSide==MMDrawerSideNone&&

    [gestureisKindOfClass:[UIPanGestureRecognizerclass]]){

    UIView*customView = [mainVCcustumview];

    CGPointlocation = [touchlocationInView:customView];

    shouldRecognizeTouch = (CGRectContainsPoint(customView.bounds, location));

    }

    returnshouldRecognizeTouch;

    }];``

    customView为中间视图的一个公开的属性,内部设定为:

    ``//用于触发侧滑栏的view

    CGFloatcustH =kContentY;

    self.custumview= [[UIViewalloc]initWithFrame:CGRectMake(0, custH,15,kScreenHeight- custH)];

    [self.viewaddSubview:self.custumview];``

    我的项目是只有中间视图的根视图才能触发侧滑栏

    ,如果想在全局都可以触发侧滑栏,可以直接把customView直接加载window上

    之前用的别的第三方的侧滑框架大多无法解决我的项目中手势逻辑的问题,现在完美解决~

    有类似项目的同学可以借鉴一下,不对之处请轻拍~

    欧了~

    相关文章

      网友评论

          本文标题:MMDrawerController 侧滑栏与内容ScrollV

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