1

我正在尝试使用滑动侧菜单实现视图,例如 iOS 6.1 中的PKRevealController在 github 上使用源代码对这个问题进行了简单的演示,但是如果您已经了解了 gestureRecognizer 委托实现,则可能不需要获取它。

我看到的问题是我的用户想要使用的两个手势会相互混淆。应用程序中心(主屏幕)中的 UITableView 应该能够使用向右滑动手势删除,但我仍然希望在顶部导航区域发生滑动以暴露侧边菜单。我也打算显示除表格视图之外的其他内容,并且在运行时,每当用户在其中一个侧面菜单上选择一个按钮时,我计划将主视图换成不同的视图。这有点像我要使用的“隐藏侧托盘 UITabBarController”,但我希望仅当主“前视图”控制器不是 UITableView 或其子视图时才显示侧栏。

目前,使用PKRevealController自带的demo源码,并在主视图的UITableView中加入删除支持,已经无法通过滑动手势删除一行。(您必须添加一种表格视图方法才能在 UITable 视图中启用删除支持,我确实添加了。)

这是在这里被问到的,但是所陈述的答案是不完整的,如下所示,对我不起作用,我不知道为什么,因为似乎在我返回 YES 的任何时候都没有调用这个委托方法,但是无论如何它都会继续并开始一个手势。 更新与我在下面放置的 WIKI/FAQ 答案相比,上一个问题中的答案也是错误的。

我只通过添加以下内容修改了 PKRevealController.m 类:

- (BOOL)                             gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {

    UIView *view1 = otherGestureRecognizer.view;
    UIView *view2;
    if (view1) {
         view2 = view1.superview;
    };

    if ([gestureRecognizer.view isKindOfClass:[UITableView class]])
    {
        return NO;
    }
    // Co-operate by not stealing gestures from UITableView.
    if ([view1 isKindOfClass:[UITableView class]]) {
        return NO;
    }else if ([view1 isKindOfClass:[UITableViewCell class]]) {
        return NO;
        // UITableViewCellContentView
    }
    else if (view2 && [view2 isKindOfClass:[UITableViewCell class]]) {
        return NO;
        // UITableViewCellContentView
    }
    else
    {
        return YES;    // NEVER GETS HIT. BREAKPOINT HERE!
    }
}

让我感到困惑的是,上面的返回 YES 代码在任何时候都没有被命中(我有一个断点),然而,手势控制器仍在窃取手势。

注意:我做了一个邪恶的黑客攻击,但我认为我可以干净地阻止这种情况。这是我的邪恶黑客:

- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer
{
    if (gestureRecognizer == self.revealPanGestureRecognizer)
    {
        CGPoint translation = [self.revealPanGestureRecognizer translationInView:self.frontViewContainer];
        BOOL begin = (fabs(translation.x) >= fabs(translation.y));

        // BEGIN EVIL HACK
        if (_topLimitY > 0) {
         CGPoint location = [gestureRecognizer locationInView:gestureRecognizer.view];
         if (location.y>_topLimitY) // _topLimitY = 55 for instance.
            begin = NO;
        }
        // END EVIL HACK.

        return begin;
    }
    else if (gestureRecognizer == self.revealResetTapGestureRecognizer)
    {
        return ([self isLeftViewVisible] || [self isRightViewVisible]);
    } 

    return YES;
}

现在,在我的恶意黑客演示中,我将 topLimitY 属性(我添加到 PKRevealController 的属性中)设置为 55,这允许我在前视图的导航栏区域上滑动,但不能在占据演示的其余部分。

请注意,我计划有多个主视图,并且如果视图是 UITableView 或其某些子视图,则只想在整个主区域上击败手势识别。这就是为什么我将我的 hack 称为 hack 之上的原因。因为我认为你可以告诉手势识别器离开而不打扰你,但它不起作用,它甚至没有调用 shouldRecognize 方法,它只是继续执行其列表中的下一个事情做。

在此处输入图像描述

4

2 回答 2

4

我真的应该先阅读WIKI,不是吗?

这是一个常见问题解答,它在这里说:

实例化控制器时,在您的选项字典中传递此选项:

  NSDictionary *options = @{
      PKRevealControllerRecognizesPanningOnFrontViewKey : @NO
  };

这将禁用整个前视图的基于平移的显示。现在,您可以使用revealPanGestureRecognizer 并将其添加到您希望在不干扰表格视图的情况下平移的任何视图中,以启用基于手势的显示。我建议(如果使用带有可滑动单元格的基于表格的环境)您,将revealPanGestureRecognizer 添加到您的前视图控制器的导航栏(它很可能有):

  [self.navigationController.navigationBar addGestureRecognizer:self.revealController.revealPanGestureRecognizer];

瞧——平移不再干扰您的表格视图。

更多信息: https ://github.com/pkluz/PKRevealController/issues/76

谢谢维基。要是我先读完就好了。

以上完全回答了我的问题,并且已经在 wiki 上。我正在回答我自己的问题,因为 Google 似乎总是首先使用 Stackoverflow,这可能会在未来帮助其他困惑的开发人员。

更新如果上面的事情在你尝试的时候爆炸了,那可能是太早了。这是上述修复的一个更强大的版本:

// Additional gesture recognition linkups. The underscore variables here
// are implementation-section ivars in my app-delegate,  that I have already 
// checked are valid and initialized, and this is the last thing in my app delegate
// didFinishLaunch... method, before the return YES:

UIGestureRecognizer *rec = _revealController.revealPanGestureRecognizer;
if (rec) {
    [_frontViewNavController.navigationBar addGestureRecognizer:rec];
}
于 2013-04-05T14:09:11.670 回答
4

用这个 :

self.revealController.frontViewController.revealController.recognizesPanningOnFrontView = YES;
于 2013-06-07T09:49:44.707 回答