设置TableView section header的颜色
Posted 有棱角的圆
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置TableView section header的颜色相关的知识,希望对你有一定的参考价值。
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
view.tintColor = [UIColor clearColor];
}
view.tintColor = [UIColor clearColor];
}
以上是关于设置TableView section header的颜色的主要内容,如果未能解决你的问题,请参考以下文章
iOS -tableView在Grouped样式下去掉section分割线
折叠表格思路及遇到的问题(tableView:viewForHeaderInSection:的section从1开始,不是从0开始)