touchesEnded:withEvent: from UIScrollView First Responder
- by Matthew Mitchell
I've made a UIScrollView the first responder. I need to maintain touch events to a touchesEnded:withEvent: method on a view behind it. I've tried using the nextResponder method and that failed. I've tried forwarding touchesEnded:withEvent to the view behind it and that fails.
How do I get this to work? The UIScrollView wont work unless it is the…