There are two views.
The first is an UIScrollView
where the view to zoom is placed.
The second is an UIView
which can handle taps on it.
Both views have gesture recognizers attached to them.
The problem is that even all gesture recognizers are turned off, scroll view won't zoom until I completely remove a view above (or set it userInteractionEnabled = NO
). So how can I pass touches to scroll view and not lose other recognizers?