Similar to this thread and many others, I've got a view controller with a NIB file which has this layout...
- a. UIView (480 x 320) - stores a background image
- b. UIScrollView (480 x 220) - Is a level selector scrollview
- c. UIView (480 x 320) - contains a foreground animated graphic
All three items above are subviews of the main View in the NIB. UIView (c) is the full size of the iPhone screen and on top of the hierarchy. On it, I've placed a character which animates based on the current touch position in that view. However the issue is that with this view receiving touches, I cannot get the touches to the ScrollView (b) below it. I still need to use the touches at (c) but also need to pass relevant touches / swipes to the UIScrollView below afterwards.
Can anyone advise how this can be done? I've read various posts on using hittest but don't want to offset the touches completely, I just need to forward them after so that the scrollview still works as normal.
Thanks,