Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8161949
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T18:36:23+00:00 2026-06-06T18:36:23+00:00

I’m sure this is a basic misunderstanding of the responder chain – has it

  • 0

I’m sure this is a basic misunderstanding of the responder chain – has it changed since iOS4? I have a view with some subviews. The superview has no purpose other than positioning the subviews, and should have nothing to do with handling touches. I want the subviews to listen for touches, but the superview seems to block touch events. I thought superviews passed touches on to subviews? I’ve read several posts on this, but I can’t get my head around it. Several posts seem to suggest that setting userInteractionEnabled to NO for the superview will work, but doing this still doesn’t seem to let the touch through.

In case it’s not clear what I mean, here’s some simplified code. Tapping inside the red view does NOT trigger the NSLog…

@implementation ViewController
@synthesize redView;

- (void)viewDidLoad
{  
    UIView *blueView = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 200, 400)];
    blueView.backgroundColor = [UIColor blueColor];
    [self.view addSubview:blueView];
    redView = [[UIView alloc]initWithFrame:CGRectMake(20, 20, 40, 40)];
    redView.backgroundColor = [UIColor redColor];
    [blueView addSubview:redView];
    [super viewDidLoad];
}

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = [touches anyObject];
    CGPoint touchPoint = [touch locationInView:self.view];

    if (CGRectContainsPoint(redView.frame, touchPoint)) {
        NSLog(@"red got touched");
    }
}

@end
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T18:36:24+00:00Added an answer on June 6, 2026 at 6:36 pm

    The coordinates of the touch you are receiving are expressed in the coordinate system of the enclosing view. So you need to correct them with the offset of the blueView. One way would be to add a blueView property to your object and then correct in the touchesBegan method:

    -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
       UITouch *touch = [touches anyObject];
       CGPoint touchPoint = [touch locationInView:self.view];
    
       touchPoint.x -= blueView.frame.origin.x;
       touchPoint.y -= blueView.frame.origin.y;
       if (CGRectContainsPoint(redViewFrame, touchPoint)) {
          NSLog(@"red got touched");
       }
    }
    

    Or you could subclass UIView for the blueView and override touchesBegan there

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I have some data like this: 1 2 3 4 5 9 2 6
I have just tried to save a simple *.rtf file with some websites and
For some reason, after submitting a string like this Jack’s Spindle from a text
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I have an MVC Razor view @{ ViewBag.Title = Index; var c = (char)146;
I have a view passing on information from a database: def serve_article(request, id): served_article

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.