Is there a way to make a UIView unresponsive AND pass through all touch events? Basically I just want to display graphics on top of other UIViews without blocking touch events.
Asked
Active
Viewed 2.8k times
46
-
1Magic Bullet Dave actually provided a correct answer here: http://stackoverflow.com/questions/9026097/passing-through-touches-to-uiviews-underneath – AndroC Jun 27 '13 at 15:59
1 Answers
96
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.
-
You're right. I actually meant to ask something else, but realized I was doing it the wrong way, so my real question is now moot.. – Morrowless Jul 12 '11 at 10:11