I have UIScrollView
and I added UIView
over it and I added gesture recognizers to UIView
. I added tap gesture and swipe gestures to UIView
and it works fine. But when user use pinch then I want to be ignore by UIView
and UIScrollView
should react to this gesture. How can I do it? I can't anyway how to do this. I know there is hit test method but I don't think it could help me.
Edit: I have UIView
at the top which now captures (catch) all gestures. For tap and swipe gestures it's what I want. But I want to pinch gesture would be ignore by top UIView
and get catched by UIScrollView
below that UIView
. I've tried to search for solution but I can't found any.