I have a scroll view with transparent background that covers most of the screen. It also covers some buttons that still need to be tap-able. How can I make sure that the scroll view doesn't respond to touches in regions where the subview image is transparent?
A:
You could try to override hitTest:withEvent:
in your scroll view.
Nikolai Ruhe
2010-04-19 19:39:48
Thanks a lot. The solution for me was overriding- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event;
olegam
2010-04-19 20:11:18