说,我有两个重叠的UIView图层:
----view-top
--view-below
当我触摸屏幕时,我希望触摸由这两个视图处理,而不仅仅是一个。
我该怎么做?
答案 0 :(得分:4)
试试这个:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[self.nextResponder touchesBegan:touches withEvent:event];
}
这会将触摸发送给链中的下一个响应者,在这种情况下,是您的视图!