I have n UIScrollView
that fit the whole screen, and a UIView
displayed in front of it. I would like to transfer touch events from the UIView
to the UIScrollView
, such as:
when I move my finger on the
UIView
, theUIScrollView
scrolls accordingly (with preserved inertia)the UIView may contain buttons, so
userInteractionEnabled = false
is not a good solutionwhen I move my finger on the
UIScrollView
, theUIScrollView
scrolls as usual
If anyone has a solution, please don't hesitate.
Thanks in advance.