vote up 2 vote down star
1

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button?

For instance, at the moment I have a UIView (A) with an object at the top and an object at the bottom of the screen and nothing in the middle. This sits on top of another UIView that has buttons in the middle (B). However, I cannot seem to interact with the buttons in the middle of B.

I can see the buttons in B - I've set the background of A to clearColor - but the buttons in B do not seem to receive touches despite the fact that there are no objects from A actually on top of those buttons.

EDIT - I still want to be able to interact with the objects in the top UIView

Surely there is a simple way of doing this?

Many thanks,

D

flag
Its pretty much all explained here: developer.apple.com/iphone/library/… But basically, override hitTest:withEvent:, they even supply a code sample. – nash Dec 1 at 10:52

4 Answers

vote up 1 vote down

You should create a UIView subclass for your top view and override the following method:

- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {
    // UIView will be "transparent" for touch events if we return NO
    return (point.y < MIDDLE_Y1 || point.y > MIDDLE_Y2);
}

You may also look at the hitTest:event: method.

link|flag
Thanks gyim - I'll give it a go. That seems to be the sort of thing I'm after! – delany Nov 29 at 21:13
vote up 0 vote down

You have to set upperView.userInteractionEnabled = NO or the upper view will intercept the touches.

The Interface Builder version of this is a checkbox at the bottom of the View Attributes panel called "User Interaction Enabled". Uncheck it and you should be good to go.

link|flag
Sorry - should have said. I still want to be able to interact with the objects in the top UIView. – delany Nov 7 at 22:01
vote up 0 vote down

There's something you can do to intercept the touch in both views.

Top view:

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { // Do code in the top view [bottomView touchesBegan:touches withEvent:event]; // And pass them on to bottomView // You have to implement the code for touchesBegan, touchesEnded, touchesCancelled in top/bottom view. }

But that's the idea.

link|flag
This is certainly possible - but is a lot of work (you would have to roll your own touch-sensitive objects in the bottom layer (e.g. buttons), I think?) and it seems odd that one would have to roll your own in this way to get behavior that would seem to be intuitive. – delany Nov 26 at 5:44
I'm not sure maybe we should just give it a try. – Alexandre Cassagne Nov 26 at 20:43
vote up 0 vote down

I have never built a complete user interface using the UI toolkit, so I don't have much experience with it. Here is what I think should work though.

Every UIView, and this the UIWindow, has a property subviews, which is an NSArray containing all the subviews.

The first subview you add to a view will receive index 0, and the next index 1 and so forth. You can also replace addSubview: with insertSubview: atIndex: or insertSubview:aboveSubview: and such methods that can determine the position of your subview in the hierarchy.

So check your code to see which view you add first to your UIWindow. That will be 0, the other will be 1.
Now, from one of your subviews, to reach another you would do the following:

UIView * theOtherView = [[[self superview] subviews] objectAtIndex: 0];
// or using the properties syntax
UIView * theOtherView = [self.superview.subviews objectAtIndex:0];

Let me know if that works for your case!


(below this marker is my previous answer):

If views need to communicate with each other, they should do so via a controller (that is, using the popular MVC model).

When you create a new view, you can make sure it registers itself with a controller.

So the technique is to make sure your views register with a controller (which can store them by name or whatever you prefer in a Dictionary or Array). Either you can have the controller send a message for you, or you can get a reference to the view and communicate with it directly.

If your view doesn't have a link back the controller (which may be the case) then you can make use of singletons and/or class methods to get a reference to your controller.

link|flag
Thanks for your reply - but I'm not sure I understand. Both views have a controller - the issue is that, with one view on top of the other, the bottom view is not picking up events (and forwarding them to its controller), even through there is no object actually 'blocking' those events in the top view. – delany Nov 10 at 15:27
Do you have a UIWindow at the top of our UIViews? If you do, the events should be propagated and you shouldn't need to do any "magic". Have a read about [Window and Views][1] at Apple Dev center (and by all means, add another comment if this doesn't help you!) [1]: developer.apple.com/iphone/library/… – nash Nov 10 at 17:34
Yes, absolutely - a UIWindow at the top of the hierarchy. – delany Nov 26 at 5:38
I've updated my answer to include the code for going through a hierarchy of views. Let me know if you need any other help! – nash Nov 26 at 6:25
Thanks for your help nash - but I'm fairly experienced with building these interfaces and my current one is set up correctly as far as I know. The issue seems to be the default behavior of full views when they are placed on top of others. – delany Nov 29 at 21:12

Your Answer

Get an OpenID
or

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