标签: ios uiview touchesbegan
我有一个覆盖UIViewController的UIView。我希望接收所有触摸并隐藏视图,但仍然按照惯例对所有基础控件进行响应。
UIView
我正在使用touchesBegan:withEvent:并接受触摸没问题。
touchesBegan:withEvent:
我可以使用pointInside:withEvent:转发这些内容。
pointInside:withEvent:
但是我不能同时接收和发送,这可能吗?
答案 0 :(得分:0)
是的 - 在返回之前,我在pointInside:withEvent:方法中调用了我的方法。它现在拾取视图下方的所有触摸并执行我的方法。