搜索
您的当前位置:首页正文

让tableView的sectionHeader不悬停的最简单办

来源:知库网

开发中有时候用Plain样式不希望sectionHeader悬停,但是Grouped样式又不符合要求,那么最简单的方法就是把sectionHeader设置成透明底色就可以了。

-(void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
    view.tintColor = [UIColor clearColor];
}
Top