开发中有时候用Plain样式不希望sectionHeader悬停,但是Grouped样式又不符合要求,那么最简单的方法就是把sectionHeader设置成透明底色就可以了。
-(void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
view.tintColor = [UIColor clearColor];
}
开发中有时候用Plain样式不希望sectionHeader悬停,但是Grouped样式又不符合要求,那么最简单的方法就是把sectionHeader设置成透明底色就可以了。
-(void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
view.tintColor = [UIColor clearColor];
}