我目前正在创建自己的自定义部分标题,但我从来没有通过代码编辑任何文本。我用来填充自定义标题的新方法正在做一些奇怪的事情,如下所示
我想将文本更改为白色并稍微加粗,并使白色背景透明..
这是我用来执行此操作的代码
- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 30)];
[headerView setBackgroundColor:[UIColor grayColor]];
// Add the label
UILabel *headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0.0, 0.5, 20, 20)];
// do whatever headerLabel configuration you want here
headerLabel.text = [self tableView:tableView titleForHeaderInSection:section];
[headerView addSubview:headerLabel];
// Return the headerView
return headerView;
}
我试过这个
[headerLabel.backgroundColor:[UIColor clearColor]];
等,但它不工作:(