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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T15:09:35+00:00 2026-06-03T15:09:35+00:00

I know this is a noob question but …I have these labels on a

  • 0

I know this is a noob question but …I have these labels on a tableview, but the text is completely squished to the left. I want to add a bit of padding. How do I go about it?

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

    UIView* customView = [[[UIView alloc] initWithFrame:CGRectMake(10,0,300,60)] autorelease];

    UILabel *headerLabel = [[[UILabel alloc] initWithFrame:CGRectZero] autorelease];

    headerLabel.backgroundColor = [UIColor colorWithHexString:[[_months objectAtIndex:section] objectForKey:@"color"]];
    headerLabel.font = [UIFont boldSystemFontOfSize:18];
    headerLabel.frame = CGRectMake(0,0,400,30);
    headerLabel.text =  [[_months objectAtIndex:section] objectForKey:@"name"];

    headerLabel.textColor = [UIColor whiteColor];


    [customView addSubview:headerLabel];

    return customView;
}

any help is much appreciated! Thanks!

  • 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-03T15:09:38+00:00Added an answer on June 3, 2026 at 3:09 pm

    I found a better way to do this:

    -  (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section  {
    
        CGRect frame = CGRectMake(0, 0, 320, 25);
        UIView *customView = [[UIView alloc] initWithFrame:frame];
        UILabel *sectionTitle = [[UILabel alloc] init];
        [customView addSubview:sectionTitle]; 
        customView.backgroundColor = [UIColor redColor];
    
        frame.origin.x = 10; //move the frame over..this adds the padding!
        frame.size.width = self.view.bounds.size.width - frame.origin.x;
    
        sectionTitle.frame = frame;
        sectionTitle.text = @"text";
        sectionTitle.font = [UIFont boldSystemFontOfSize:17];
        sectionTitle.backgroundColor = [UIColor clearColor];
        sectionTitle.textColor = [UIColor whiteColor];
    
        [sectionTitle release];
    
        tableView.allowsSelection = NO;
    
        return [customView autorelease];
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this question has been done but I have a slightly different twist
Hi Sorry for this noob question but here goes...i have a working slidetoggle on
I realize this is a painfully noob question but I just don't know what
This might be a noob question, but can't find an answer anywhere. I have
I know this is a noob question, but I've worked with Python before and
I know this may be a noob question, but it's bugging the heck out
Sorry if this is a noob question, but I have been given the dubious
although this question sound noob.. but i really need to know this. What is
although this question sound noob.. but i really need to know this. What is
This is a noob question, I know but I didn't find the answer on

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.