UITableViewのsection毎のタイトルのスタイルを変更する方法のメモ。 通常だと - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { return @"section title"; } こんな感じでセクション毎のタイトルを設定出来る。 これを - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { UIView *v = [[UIView alloc] init]; // 背景に画像をセットする v.backgroundColor = [UIColor blackColor]; UILabel *lbl = [[UIL