I'd like to disable touch handling for a UIView but keep it enabled for one of its subviews.
The problem is once I set userInteractionEnabled
to false
on the parent view, I can't bring it back by explicitly setting it to true in a sub view.
How can I enable userInteractionEnabled
selectively just for one sub view?