Search code examples
iphonecocoa-touchtouchuiapplicationpropagation

Propagating touches from UIApplication in a custom manner


Is it possible to propagate touches from shared application object to a custom view which has not actually received touches and somewhere at the back of the top view? Assume that I can't use my top view to track touches.


Solution

  • It would be difficult - because the top view receives the event first.

    You can't just call userInterActionEnabled on the top view, and pass the event down to a lower layer?