我想检测顶部有 UIView 的 UIScrollView 中的触摸。这个 UIView 上有按钮,所以我不能userInteractionEnabled
在 UIView 上禁用。
为了更好地理解,这是层次结构:
UIView (MainView: (0,0) 320x460)
. .UIScrollView (ScrollView: (0,0) 320x460)
. .UIView (OverlayView: (0,0) 320x250)
. . . .UIButton (button1: 50x50)
. . . .UIButton (button2: 50x50)
. . . .UIButton (button3: 50x50)
触摸 OverlayView 时我可以滚动。但不在 OverlayView 的空白处。
有什么建议吗?谢谢!