UITableView のセクション ヘッダーをカスタマイズしようとしています。UITableView は IB で作成されました。私は理解できない2つの問題を抱えています。
UILabel の大きさに関係なく、フォント サイズは約 18 を超えることはありません。
セクション ヘッダーがテーブルを覆い隠しています。
サイズがわかるように、ラベルを青色にしました。
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
// Name of section
NSString *header = [[purchases allKeys] objectAtIndex:section];
// Label for section header
UILabel *label = [[[UILabel alloc] init] autorelease];
label.frame = CGRectMake(10, 0, 230, 45);
label.textColor = _orange;
label.font = [UIFont fontWithName:@"Heiti TC Medium" size:52];
label.text = header;
label.backgroundColor = [UIColor blueColor];
// View to contain label
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(10, 0, 230, 45)];
[view autorelease];
[view addSubview:label];
return view;
}