美文网首页
tableviewstylegroup下的奇葩bug:第一个se

tableviewstylegroup下的奇葩bug:第一个se

作者: 785ac245e5c9 | 来源:发表于2018-05-11 09:52 被阅读12次

重现:在设置了tableview的tableHeaderView后,第一个section的sectionview不显示

去cocoachina看了下得到解决方案

以下写法错误

// _tableView.sectionHeaderHeight = 60;

需要这样写

- (CGFloat)tableView:(UITableView *)tableViewheightForHeaderInSection:(NSInteger)section{

return 60;

}

BUG竟然解决了真是不可思议

相关文章

网友评论

      本文标题:tableviewstylegroup下的奇葩bug:第一个se

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