iOS tableViewパーティションヘッダのカスタマイズ


//                    

_tableView.sectionHeaderHeight = 30;

//   tableView           (                    )

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{

    return30;

}

//         view

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{

    staticNSString * identy = @"head";

    UITableViewHeaderFooterView * hf = [tableViewdequeueReusableHeaderFooterViewWithIdentifier:identy];

    if (!hf) {

        NSLog(@"%li",section);

        hf = [[UITableViewHeaderFooterViewalloc]initWithReuseIdentifier:identy];

        UIView * view = [[UIViewalloc]initWithFrame:CGRectMake(0,0, self.view.frame.size.width,30)];

        view.backgroundColor = [UIColorgrayColor];

        [hf addSubview:view];

    }

    return hf;

}