I'm having trouble getting my UIButtons, UIScrollViews etc working in this situation:
I have the base UIViewController, which is the root controller of the UIWindow. Above that layer I have some other UIViews added, which I will call the "Middle Layer View". And on the top I have another UIView added for overlay objects.
The Middle Layer View is changed for different views regularly. The UIView it uses is from a UIViewController, made by a NIB file. Here's an example
if ( mode == eModeShowView1 )
UIViewController* nextController = [[UIViewController alloc] initWithNibName:@"View1"...
else if ( mode == eModeShowView2 )
UIViewController* nextController = [[UIViewController alloc] initWithNibName:@"View2"...
[UIView insertSubview:nextController.view below:m_overlayView];
Now, when I touch on screen, the first responder is obviously the OverlayView or any UIResponder on the OverlayView that has been touched. The UIEvent of the touch input goes up the view chain but seems to skip the Middle Layer View and the UIResponders on that UIView altogether. It jumps straight to the root UIViewController.
Does anyone know what's going on here?
Could it be solved by somehow creating two UIEvents? One for the Overlay View and one for the Middle Layer View? Is that possible? If so, how?
Any help would be most appreciated. Thanks, Rich