美文网首页
让tableView的sectionHeader不悬停的最简单办

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

作者: melody5 | 来源:发表于2017-06-26 17:36 被阅读313次

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

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

相关文章

网友评论

      本文标题:让tableView的sectionHeader不悬停的最简单办

      本文链接:https://www.haomeiwen.com/subject/rpyjcxtx.html