UITableViewCell在响应者链中跳过

时间:2014-01-24 07:30:04

标签: ios uitableview uiresponder responder-chain

我试图在UITableViewCell的子视图中触发一个事件,让它冒出响应者链并由自定义UITableViewCell子类处理。

基本上:

SomeView.m (这是UITableViewCell的子视图)

[self.button addTarget:nil action:@selector(someAction:) events:UIControlEventTouchUpInside]

SomeCustomCell.m

- (void)someAction:(id)sender {
     NSLog(@"cool, the event bubbled up to the cell");
}

为了测试为什么这不起作用,我在ViewController上添加了someAction:方法,而ViewController最终处理了从表视图单元子视图中冒出来的事件,甚至虽然Cell应该处理它。我已经检查过Cell是否在响应者链上,并且我已经验证了在单元格上方和下方的响应者链上的任何视图都会响应该事件,如果它们实现了someAction:方法。

这到底是怎么回事?

这是一个展示它的项目https://github.com/keithnorm/ResponderChainTest这种预期的行为是什么?我没有找到任何文档说明UITableViewCell的处理方式与其他UIResponder的处理方式不同。

5 个答案:

答案 0 :(得分:9)

小组似乎要求其表视图获得许可。要改变,你当然可以覆盖

- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
{
    return [self respondsToSelector:action];
}

斯威夫特3:

override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
    return self.responds(to: action)
}

答案 1 :(得分:1)

我已经得出结论,这是一个错误或未记录的预期行为。无论如何,我最终通过在子视图中响应事件然后手动将消息传播到响应者链中来强行修复它。类似的东西:

- (void)customEventFired:(id)sender {
  UIResponder *nextResponder = self.nextResponder;
  while (nextResponder) {
    if ([nextResponder respondsToSelector:@selector(customEventFired:)]) {
      [nextResponder performSelector:@selector(customEventFired:) withObject:sender];
      break;
    }
    nextResponder = nextResponder.nextResponder;
  }
}

我还更新了我的演示项目,以展示我是如何使用此“修复”https://github.com/keithnorm/ResponderChainTest的。

如果有其他人想到这一点,我仍然欢迎任何其他想法,但这是我现在所拥有的最好的。

答案 2 :(得分:0)

喜欢这个

    @implementation ContentView

   // uncomment this to see event caught by the cell's subview

  - (id)initWithFrame:(CGRect)frame
 {
     self = [super initWithFrame:frame];
    if(self)
   {

    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    [button setTitle:@"Click" forState:UIControlStateNormal];
    [button setBackgroundColor:[UIColor blueColor]];
    [button addTarget:self action:@selector(customEventFired:) forControlEvents:UIControlEventTouchUpInside];
    button.frame = CGRectMake(4, 5, 100, 44);
    [self addSubview:button];
  }

    return self;
}

 - (void)customEventFired:(id)sender
{
     UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Event Triggered in cell subview" message:@"so far so good..." delegate:nil cancelButtonTitle:@"cancel" otherButtonTitles:nil, nil];
    [alertView show];
 }

@end

现在调用customEventFired:方法

答案 3 :(得分:0)

您可以将View.m中的代码更改为

      [button addTarget:nil action:@selector(customEventFired:) forControlEvents:(1 << 24)];

      [button addTarget:cell action:@selector(customEventFired:) forControlEvents:(1 << 24)];

答案 4 :(得分:0)

我认为这是最简单的解决方案。如果您没有指定目标,事件将自动冒泡响应者链。

[[UIApplication sharedApplication]sendAction:@selector(customAction:) to:nil from:self forEvent:UIEventTypeTouches];