現在、独自のカスタム セクション ヘッダーを作成していますが、コードを使用してテキストを編集したことは一度もありません。また、カスタム ヘッダーを設定するために使用している新しいメソッドは、以下に示すように奇妙なことを行っています。
テキストを白に変更して少し太く、また白い背景を透明にしたいと思います..
これは私がこれを行うために使用しているコードです
- (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]];
などですが、機能していません:(