可以通过Two UIViews处理一次触摸吗?

时间:2012-06-26 07:40:41

标签: iphone uiview

说,我有两个重叠的UIView图层:

----view-top
  --view-below

当我触摸屏幕时,我希望触摸由这两个视图处理,而不仅仅是一个。

我该怎么做?

1 个答案:

答案 0 :(得分:4)

试试这个:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    [self.nextResponder touchesBegan:touches withEvent:event];
}

这会将触摸发送给链中的下一个响应者,在这种情况下,是您的视图!