改变UITableView头视图的背景色

2018-01-24  本文已影响0人  阿木小丸子

1、当有自定义的头视图时:

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

    view.tintColor = [UIColor clearColor];

}

2、当没有自定义的头视图时:

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

{

    UITableViewHeaderFooterView *v = (UITableViewHeaderFooterView *)view;

    v.backgroundView.backgroundColor = [UIColor clearColor];

}

上一篇下一篇

猜你喜欢

热点阅读