3

tableView:viewForHeaderInSection:UITableViewCell のヘッダー セクションでフォントの色を調整する最良の方法は?

を定義せずに(理想的には)フォントの色を調整したいだけですUIView。過去にセクション ヘッダーの配置に問題があったため、上記の方法を使用するのは特に気が進まない。

4

1 に答える 1

3

tableView:viewForHeaderInSection: UIView を返します。UIView を作成し、UILabel を UIView に追加し、UILabel のフォントを調整する必要があります。

例えば:

{
UIView *headerView = [[[UIView alloc]   
initWithFrame:CGRectMake(0,0,self.view.frame.size.width, 30)] autorelease];
UILabel *label = [[UILabel alloc] initWithFrame:headerView.frame];
label.font = [UIFont systemOfFontWithSize:12];
....
return headerView;
}
于 2011-12-13T01:02:24.170 に答える