45

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.

Morrowless
  • 6,606
  • 10
  • 47
  • 77
  • 1
    Magic Bullet Dave actually provided a correct answer here: http://stackoverflow.com/questions/9026097/passing-through-touches-to-uiviews-underneath – ancajic Jun 27 '13 at 15:59

1 Answers1

95

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