简体   繁体   中英

How to increase the height of a section in a UItableview

How can I increase the height of a UITableView section. The code I am using right now is -

I tried to increase the height of the view that I am returning , but it does nothing . Can anyone help me?

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 18)];
    /* Create custom view to display section header... */
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(10, 5, tableView.frame.size.width, 18)];
    [label setFont:[UIFont boldSystemFontOfSize:12]];

    NSString *string =[NSString stringWithFormat:@"%@  %@  %@",self.uploadYear[section],self.uploadDate[section],self.uploadTime[section]];

    [label setText:string];
    [view addSubview:label];
    [view setBackgroundColor:[UIColor colorWithRed:77/255.0 green:166/255.0 blue:147/255.0 alpha:1.0]]; //your background color...
    return view;
}

add this delegate method

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;

in your case, return 18;

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
   if(section==0){
        return 50.0f;
   }
   else if(section==1){
        return 60.0f;
   }
   else{
        return 100.f;
   }

}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM