I have a custom UIViewController whose UIView takes up a corner of the screen, but most of it is transparent except for the parts of it that have some buttons and stuff on it. Due to the layout of the objects on that view, the view's frame can cover up some buttons beneath it. I want to be able to ignore any touches on that view if they aren't touching anything important on it, but I seem to only be able to pass along actual touch events (touchesEnded/nextResponder stuff). If I have a UIButton or something like that which doesnt use touchesEnded, how do I pass the touch event along to that?

I can't just manually figure out button selector to call, because this custom ViewController can be used on many different views. I basically need a way to call this:

[self.nextResponder touchesEnded:touches withEvent:event];

on UIControl types as well.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 5 down vote accepted

Probably the best way to do this is to override hitTest:withEvent: in the view that you want to be ignoring touches. Depending on the complexity of your view hierarchy, there are a couple of easy ways to do this.

If you have a reference to the view underneath the view to ignore:

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
    UIView *hitView = [super hitTest:point withEvent:event];

    // If the hitView is THIS view, return the view that you want to receive the touch instead:
    if (hitView == self) {
        return otherView;
    }
    // Else return the hitView (as it could be one of this view's buttons):
    return hitView;
}

If you don't have a reference to the view:

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
    UIView *hitView = [super hitTest:point withEvent:event];

    // If the hitView is THIS view, return nil and allow hitTest:withEvent: to
    // continue traversing the hierarchy to find the underlying view.
    if (hitView == self) {
        return nil;
    }
    // Else return the hitView (as it could be one of this view's buttons):
    return hitView;
}

I would recommend the first approach as being the most robust (if it's possible to obtain a reference to the underlying view).

EDIT

If you create your 'ignoring' view programatically, create your view subclass (I've called it MyPassthroughView) and set it as the view controller's view in loadView:

- (void)loadView
{
    CGRect rootFrame = //...
    MyPassthroughView *passthroughView = [[MyPassthroughView alloc] initWithFrame:rootFrame];
    self.view = passthroughView;
    // ...
    // Additional setup...
    // ...

    [passthroughView release];  // (If not using ARC...)
}
link|improve this answer
That seems like what I want to do, but the view I want ignoring touches is the view property of a UIViewController I created, so is there a way to override the hitTest function of that view? – chris Oct 10 '11 at 23:48
@chris: Sure, just subclass it and throw in the overridden method as shown above. It means you'll have an extra .h and .m file hanging around with very little code in it, but it will do the job. Besides, a passthrough view is a useful subclass to have in your toolkit. If your view controller creates the view in a nib, just going into the IB file and change the view's class to your new subclass in the identity inspector. If it's created programmatically, then create and assign your view subclass in loadView (see edit). – StuDev Oct 10 '11 at 23:53
feedback

I haven't found a good way to pass UITouch events between objects. What usually works better is to implement hitTest and return nil if the point isn't in the view that you want to handle it:

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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