美文网首页
UITableViewGrouped style viewFo

UITableViewGrouped style viewFo

作者: tanpengsccd | 来源:发表于2017-09-01 11:06 被阅读28次

UITableView 为 uitableviewstylegrouped 时的一些 注意项

viewForHeaderInSection

TableView 的第一个Section的HeaderView 在未设置heightForHeaderInSection代理时会隐藏

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
    return 20;
}

image.png

viewForHeaderInSection

设置为0 时,依然有默认高度,需要返回0.01或者 CGFLOAT_MIN

-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
    return CGFLOAT_MIN;//如果没有会有默认高度
}

相关文章

网友评论

      本文标题:UITableViewGrouped style viewFo

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