ChavezChen / CWLateralSlide

One line of code to integrate 0 coupling side drawer!一行代码集成0耦合侧滑抽屉!
MIT License
1.28k stars 201 forks source link

1.5.7版本在上下滑动table的时候会引发侧滑出侧边栏 #42

Closed zjinhu closed 6 years ago

ChavezChen commented 6 years ago

如果说的是在上下滑的同时稍微带一点左右滑动可能会引发侧边栏滑出的问题,可以在CWInteractiveTransition.m这个文件下面 最后一个方法

#pragma mark - UIGestureRecognizerDelegate
-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {

//    if ([otherGestureRecognizer.view isKindOfClass:[UITableView class]]) {
//        return YES;
//    }
    return NO;
}

把这个方法改成这样。应该就可以了。 之前因为有童鞋直接用的tableViewController做界面会导致手势冲突界面无法滑动,修改成这样了。之后我会考虑把这个参数放出来让大家自己来配置这个东西

ChavezChen commented 6 years ago

1.5.8已经调整重新上传了。。