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

  • SEARCH
  • Home
  • 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 9181303
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T18:16:49+00:00 2026-06-17T18:16:49+00:00

I have added a UIView to a View of a View Controller. Say: CGRect

  • 0

I have added a UIView to a View of a View Controller. Say:

CGRect paneRect = {10.0f, 10.0f, 300.0f, 50.0f};
UIView *pane = [[UIView alloc] initWithFrame:paneRect];
pane.backgroundColor = [UIColor greenColor];
pane.userInteractionEnabled = YES;
pane.clipsToBounds = NO;
[self.view addSubview:pane];

Then I’ve added a UIButton to pane:

CGRect testRect = {10.0f, 25.0f, pane.frame.size.width - 20.0f, 50.0f};
UIButton *test = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[test setTitle:@"test" forState:UIControlStateNormal];
[test setFrame:testRect];
[pane addSubview:test];

Now half of the “test” button is within the pane and the other half is out. The upper half is interactive and responds to touches however the lower half is not.

enter image description here

Is it possible to make the whole “test” button interactive and touchable instead of its half?

  • 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-17T18:16:50+00:00Added an answer on June 17, 2026 at 6:16 pm

    If you really want to make these view stick with each other then you can do some thing like this

    CGRect mainViewRect = {10.0f, 10.0f, 300.0f, 75.0f};
    UIView *mainView = [[UIView alloc] initWithFrame:mainViewRect];
    mainView.backgroundColor = [UIColor clearColor];
    mainView.userInteractionEnabled = YES;
    [self.view addSubview:mainView];
    
    CGRect paneRect = {0.0f, 0.0f, 300.0f, 50.0f};
    UIView *pane = [[UIView alloc] initWithFrame:paneRect];
    pane.backgroundColor = [UIColor greenColor];
    pane.userInteractionEnabled = YES;
    pane.clipsToBounds = NO;
    [mainView addSubview:pane];
    
    
    
    CGRect testRect = {10.0f, 25.0f, pane.frame.size.width - 20.0f, 50.0f};
    UIButton *test = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    [test setTitle:@"test" forState:UIControlStateNormal];
    [test setFrame:testRect];
    [mainView addSubview:test];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a UIView that gets added to my UITableView .view as a subview.
I am new to iphone development.I have created a UIview controller class and added
I have one view controller in which I have added UIScrollView & UIImageView programatically.
I have added the view of my view controller as a property to the
I have got a view controller with a UIView and a navigation controller configured
Through storyboard, I have added a UIView (say Y) to another UIView (say X).
My view controller is an UIViewController . I've added UITableView to the UIView .
I already have a view controller with a default view and few things added
I have one ViewController, in this i have added one Custom UIView named as
I have added an UIImageView as a subview in UIView , and then I

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.