What's the best way to determine whether there is any active touch happening in a view hierarchy? Something like:
view.hasTouches
returns true
if view
or any of its descendant has active touches.
To those who would suggest using UIResponder
's touch event handling API like touchesBegan
, notice that view
doesn't receive these calls if one of its descendant is handling the touch events.