I have a UIView
in which I draw with a finger, it all goes fine and dandy, but I need this view to be scrollable. So I made a UIScrollView
, and embedded my drawing view in it.
But here comes the problem, I can't draw anymore since every tap goes to UIScrollView
and it intercepts them for scrolling purposes.
What I want to do, is to make UIScrollView
only intercept two finger swipes and with single touches and swipes just draw regularly.
How do I do that?
I draw by using simpe touchesBegan, touchesMoved
methods by using BezierPath
, without gesture recognizers.