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 6576229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:29:11+00:00 2026-05-25T15:29:11+00:00

I have two views the top view has some opaque and some transparent regions

  • 0

I have two views

  • the top view has some opaque and some transparent regions
  • the bottom view has some clickable buttons.

The top view is completely covering the bottom view, but since top view has transparent areas, bottom view can still be seen.

BUT, i cannot detect button clicks on the bottom view anymore since topview is blocking it, what should I do?

Is there anyway to let top view pass the touches to bottom view?

  • 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-05-25T15:29:11+00:00Added an answer on May 25, 2026 at 3:29 pm

    My solution for my own question, hope it helps someone.

    In the front view, listen for touchesEnded:withEvent delegate.

    When this delegate fires, you knows that a user is touching the front view.

    Next you need to check whether the finger position touches special areas in the BOTTOM view.

    What to do is:

    1) Convert the point to relative to the bottom view:

    UITouch *touch = [touches anyObject];
    CGPoint touchPointInLowerView = [touch locationInView:self.lowerViewController.view];
    BOOL isLowerButtonClicked = [self.lowerViewController isFingerOnYourButton:touchPointInLowerView];
    if(isLowerButtonClicked)
    {
     // lower button clicked
    }
    

    2) In the lower view

    - (BOOL) isFingerOnYourButton:(CGPoint)point
    {
     return CGRectContainsPoint(self.aButton.frame, point);
    }  
    

    voila. In this way, we can detect clicks in bottom view even it is blocked by another interactive view on top.

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

Sidebar

Related Questions

I have two views, both under the NavigationController. I don't want View 1 (on
I have two views, one view takes the whole screen, the second view covers
I have two views within one .xib (one view for landscape, another for portrait).
I have two views.In first view, I have a table view and I am
I have two Views that are positioned on top of each other. The first
I have a universal iOS app with a custom view that has three buttons,
I have a ScrollView which has two hidden images, one at the top and
I have a table view that has embedded UITextFields for entering some data. It
I have two views, viewA and viewB. I load viewB on top of viewA
I have two views, jumpBarPortrait and jumpBarLandscape I would like to animate between the

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.