0

我想更改titleForHeaderiOS 中的背景颜色。

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

此方法显示 .title 中的 titleHeader 部分UITableView

默认情况下,它的背景颜色是浅蓝色。

我想改变这些背景的黑色。

我能怎么做?

4

1 回答 1

1

看看 Alex Reynolds 在这里的回答

UITableView - 更改部分标题颜色

    - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section 
    {
      UIView *headerView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 30)] autorelease];
      if (section == integerRepresentingYourSectionOfInterest)
         [headerView setBackgroundColor:[UIColor redColor]];
      else 
         [headerView setBackgroundColor:[UIColor clearColor]];


 return headerView;
}

如果您只是获得背景颜色但没有文字

看DoctorG对同一个问题的回答

       UILabel *label = [[[UILabel alloc] initWithFrame:CGRectMake(10, 3, tableView.bounds.size.width - 10, 18)] autorelease];
    label.text = @"Section Header Text Here";
    label.textColor = [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:0.75];

label.backgroundColor = [UIColor clearColor];
[headerView addSubview:label];
于 2013-01-31T17:11:37.190 回答