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;

}

 

你可能感兴趣的:(UITableVIew,表示图)