我正在使用ECSlidingViewController并且在使用pan Gesture打开滑动菜单时遇到问题主视图中的tableview仍然具有滚动手势
我需要删除主视图的手势,并在它向后滑动时将其添加回来
答案 0 :(得分:0)
添加以下方法
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer{
return NO;
}
如果返回YES,则会产生不良行为