我有 3 个相同大小的 UIViews 堆叠在一起。最上面是透明的,仅用于检测触摸。检测到的触摸类型将决定我想要接收触摸事件的其他两个底层视图中的哪一个。一旦最顶层的视图完成了触摸,我需要将触摸事件转发到正确的底层视图。我怎样才能做到这一点?
编辑 - 我正在添加我的触摸检测代码。这是在 MainViewController 中,它的视图包含所有 3 个子视图。
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
for (UITouch *touch in touches)
{
if (touch.view == self.touchOverlay) {
CGPoint touchLocation = [touch locationInView:touch.view];
//do a bunch of math to determine which view should get the touches.
if (viewAshouldGetTouches) //forward to viewA
if (viewBshouldGetTouches) //forward to viewB
}
}
}