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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T14:01:24+00:00 2026-05-25T14:01:24+00:00

I am creating a button pro-grammatically in my TableView Header cell and adding TouchUpInside

  • 0

I am creating a button pro-grammatically in my TableView Header cell and adding TouchUpInside Action to it. With UIButton Header contains two other UILabels also.

Problem : If Button Is added as SubView, Its not respondin.

But when I return only UIButton from Method It is working fine.

Here is my code of - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{


UIView *viewHeader = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 320, 60)];

viewHeader.tag = 101;

viewHeader.backgroundColor = [UIColor cyanColor];


UIButton *btnBack = [UIButton buttonWithType:UIButtonTypeRoundedRect];

btnBack.frame = CGRectMake(15, 15, 50, 25);

//btnBack.titleLabel.text = @"Back";
[btnBack setTitle:@"Back" forState:UIControlStateNormal];

[btnBack addTarget:self action:@selector(Back:) forControlEvents:UIControlEventTouchUpInside];
btnBack.userInteractionEnabled = YES;

UILabel *lblPlayerName = [[UILabel alloc]initWithFrame:CGRectMake(75, 20, 60, 20)];
lblPlayerName.backgroundColor = [UIColor redColor];

UILabel *lblHighScoreOfPlayer = [[UILabel alloc]initWithFrame:CGRectMake(215, 20, 80, 20)];
lblHighScoreOfPlayer.backgroundColor = [UIColor yellowColor];


}
lblPlayerName.text = [@"Name" uppercaseString];

lblHighScoreOfPlayer.text = [@"Scores" uppercaseString];

[viewHeader addSubview:btnBack];    
[viewHeader addSubview:lblPlayerName];
[viewHeader addSubview:lblHighScoreOfPlayer];

return viewHeader;


}
  • 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-25T14:01:25+00:00Added an answer on May 25, 2026 at 2:01 pm

    First you add the image view as a subView of uiview for header view instead of
    UIView *viewHeader = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 320, 60)];

    The procedure should be in the following order.

    step1.allocate UIView
    step2:add imageView as the subView of uiView
    step3:add the button as the subview of imageview
    then return the uiview

    This is a working code i tested.

    - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section 
    {
        UIView *headerView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 30)] autorelease];
        UIButton *btnBack = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    
        btnBack.frame = CGRectMake(15, 15, 50, 25);
    
    
        [btnBack setTitle:@"Back" forState:UIControlStateNormal];
    
        [btnBack addTarget:self action:@selector(Back:) forControlEvents:UIControlEventTouchUpInside];
        btnBack.userInteractionEnabled = YES;
    
        [headerView addSubview: btnBack];
        return headerView;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've written some code for a button action. First I'm creating a button UI
I'm creating a button like this: <%= button_to Remove, { :controller => 'notes', :action
I've seen several questions/answers related to entirely creating a button in code, but not
When loading a page for the first time (!IsPostback), I am creating a button
I want to create a Button otherthan creating it from xml layout.i want to
I am creating a Control Template for the Button control in Silverlight 2. I
I have a button that I'm creating in a UIViewController like so: TOLoginButton* button
I am creating an HTML form with some radio button options. I'd like to
I am creating an outlook 2003 addin which adds some dropdown and button on
Creating a JApplet I have 2 Text Fields, a button and a Text Area.

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.