Make UIView pass through touch events?
Solution 1:
The event sent to your view will go through the responder chain, if it doesn't implement any event handling method.
You could also set the userInteractionEnabled
property to NO
for that view.
The event sent to your view will go through the responder chain, if it doesn't implement any event handling method.
You could also set the userInteractionEnabled
property to NO
for that view.