程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-tableView自定義Header出現個問題

ios-tableView自定義Header出現個問題

編輯:編程綜合問答
tableView自定義Header出現個問題

圖片說明

如上圖,在第一個section它的頭部比其他section大,只是為何?如何解決?

相關代碼

 - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    NSString *sectionTitle = [self tableView:tableView titleForHeaderInSection:section];
    if (sectionTitle == nil) {
        return nil;
    }

    // Create label with section title
    UILabel *label = [[UILabel alloc] init];
    label.frame = CGRectMake((SCREEN_WIDTH-200)/2, 10, 200, 25);
    label.backgroundColor = [UIColor clearColor];
    label.textColor = BarCOLOR;
    label.font = [UIFont fontWithName:@"Helvetica-Bold" size:14];
    label.textAlignment = NSTextAlignmentCenter;
    label.text = sectionTitle;

    // Create header view and add label as a subview
    UIView *sectionView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 22)];
    [sectionView setBackgroundColor:[UIColor blackColor]];
    [sectionView addSubview:label];
    return sectionView;

    return nil;
}
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    return @"12232211";
}

最佳回答:


  • (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
    {
    return 22;
    }

  • (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
    {
    return 0.1;
    }

wxlan2015
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved