MWFSlideNavigationViewController不使用从NIB文件创建的滑动手势识别器

时间:2013-08-29 04:34:35

标签: ios view uiviewcontroller

我在上下方向使用MWFSlideNavigationViewController幻灯片导航视图控制器仅显示辅助视图。

我想用左右滑动来做其他事情。事实证明,UISwipeGestureRecognizer似乎不适用于主视图(主视图)。我已经从Nib文件创建了Swipe Gesture Recognizer。相反,即使我在相同条件下创建,UITapGestureRecognizer也能完美运行。

为了能够向左和向右滑动,我应该做哪些调整?

1 个答案:

答案 0 :(得分:0)

问题已解决:

事实证明我必须添加以下行以允许Pan Gesture(在原始代码中使用)与我不想添加的Swipe Gesture一起使用。

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
{
    return YES;
}

感谢以下答案:

UISwipeGestureRecognizer not firing

Is it possible to have a UIPanGesture and UISwipeGesture together?