2011/11/29

TableViewのヘッダーのスタイルを変更するには?

グルーピングスタイルのTableViewの文字色やフォントサイズといったスタイルを変更するにはどうしたらよいか。

UITableViewDataSource Protocolにある

を実装すれば、ヘッダーのタイトルを出力できるが、スタイルまでは変えることができない。

UITableViewDelegate Protocolにある次の二つのメソッドを実装すればデザインもまとめて変更できる。

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section

heightForHeaderInSectionも一緒に実装しないと表示がへんになる。

http://stackoverflow.com/questions/6922808/how-can-we-change-the-font-of-tableview-header

0 件のコメント:

コメントを投稿