iOS tableView 改变头视图和脚视图的颜色

来源:互联网 发布:数据库冗余 anomalies 编辑:程序博客网 时间:2024/04/28 05:29
-(void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section{
    view.tintColor = [UIColor clearColor];

}


1 0