表示图分区头颜色(IOS6才行)

-(void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section

{

 view.tintColor = [UIColor blackColor];

}
必须要写下面的代理

  • (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
    {
    UIView *view = [UIView new];
    view.backgroundColor = [UIColor orangeColor];
    return view;
    }
    不然不调用

你可能感兴趣的:(表示图分区头颜色(IOS6才行))