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

link|improve this question

60% accept rate
feedback

1 Answer

up vote 0 down vote accepted

u can debug it. just use the logs in tochesbegan in all your controllers.. it will be clear by logs the sequence of touch responses.

oki.. so this description of method from documentation might answer you.. your m_overlayView and nextController.view are regarding each other as siblings and not superview. so your touch on either of them will not be reported to the other but instead to the base superview which is a common superview to both the siblings... Hence you are getting that the middle layer is being bypassed.. actually your middle-layer is a sibling and no more a superview. Hope that atleast gives you some way ahead ;)

insertSubview:belowSubview: Inserts a view below another view in the view hierarchy.

  • (void)insertSubview:(UIView *)view belowSubview:(UIView *)siblingSubview

Parameters

view

The view to insert below another view. It’s removed from its superview if it’s not a sibling of siblingSubview.

siblingSubview

The sibling view that will be above the inserted view.

Discussion

This method retains view and sets its next responder to the receiver, which is its new superview.

Views can have only one superview. If view already has a superview and that view is not the receiver, this method removes the previous superview before making the receiver its new superview.

link|improve this answer
Hi. Thanks for the quick response. I have logged the touchesBegan etc in all my ViewController. This is how I was able to find out that it is skipping my middle layer. I've just got no idea why :s. – Rich Brooks Jun 14 '11 at 11:20
please go through my updated answer – rd_ Jun 14 '11 at 12:02
Ah yes. That is what is happening. Does anyone know how I can get around this issue? Could I insert the middle layer below the overlay and then set the overlay's superview to be the middle layer? – Rich Brooks Jun 14 '11 at 15:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.