iOS UITableView 表头、表尾、段头、段尾

一、概述
本文主要是针对在iOS开发中,UITableView的表头、表尾、段头、段尾的开发过程中的遇到的细坑以及处理方式。
希望能为广大开发提供一点思路,少走一些弯路,填补一些细坑。
二、细坑
设置UITableViewHeader和UITableViewFooter的高度的坑。

代码

  • (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
    {
    if (section == 0){
    //这里是设置tableView的第一部分的头视图高度为0.01
    return 0.01;
    }else{
    //这里设置其他部分的头视图高度为10
    return 10;
    }
    }

  • (CGFloat) tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
    {
    return 0.01;//设置尾视图高度为0.01
    }

    • 注意

      • 设置区头区尾的高度,且不能设置为0,那样子没有任何设置效果的 。
      • 如果区尾不需要设置高度,可设置为0.1f。但不能为设置0。
      • estimatedHeightForFooterInSection 或者 estimatedHeightForHeaderInSection 不要返回 return 0.01。
    • 参考链接:http://blog.sina.com.cn/s/blog_133384b110102wk8b.html

  1. reason: section footer height must not be negative - provided height for section 49 is -0.001000

    • 代码
      //- (CGFloat) tableView:(UITableView *)tableView estimatedHeightForFooterInSection:(NSInteger)section{
      //return 0.001; // 这里不需要返回 否则崩溃
      //}
  • (CGFloat) tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
    return 0.001;
    }
一、概述
  • 本文主要是针对在iOS开发中,UITableView表头、表尾、段头、段尾的开发过程中的遇到的细坑以及填坑的处理方式。
  • UITableView是我们在iOS开发中经常使用到一种可视控件,UITableView的类型分为两种:UITableViewStyleGroupedUITableViewStylePlain. tableView的默认的类型是UITableViewStylePlain
  • 希望能为广大开发提供一点思路,少走一些弯路,填补一些细坑。
二、细坑

UITableView设置类型UITableViewStylePlain页面显示正常,但设置类型为UITableViewStyleGroupedtableView顶部距离导航栏底部有段距离,且你设置0无效。如下图所示:

  • UITableViewStylePlain效果图

    image
  • UITableViewStyleGrouped 效果图

    image

据分析,iOS7在tableView样式设置为UITableViewStyleGrouped后,默认设置了Header的高度。

三、填坑
  1. 方法一:设置的tableHeaderView高度为特小值 (切记不能为零,若为零的苹果会取默认值)
    // 注意:这种设置方式才有效,下面三种设置无效
    tableView.tableHeaderView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, MHMainScreenWidth, CGFLOAT_MIN)];
//    tableView.tableHeaderView = nil;
//    tableView.tableHeaderView = [[UIView alloc] init];
//    tableView.tableHeaderView = [[UIView alloc] initWithFrame:CGRectZero];

  1. 方式二:实现UITableViewDelegate方法(切记不能返回0,否则等于没设置,会走苹果的默认值。iOS UITableView 表头、表尾、段头、段尾 的坑(一)))
   - (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  {
      return CGFLOAT_MIN; // .001f
  }

  1. 方式三:设置tableViewcontentInset,该Demo中默认的tableView.contentInset.top = 64,经过滚动调试,确认当tableViewheader底部滚动到导航栏的底部时,tableView.contentOffset.y = -29 , 默认等于-64,于是即可得应该设置tableView.contentInset = UIEdgeInsetsMake(29, 0, 0, 0);,其实不然,这样会导致tableView.contentInset.top = 64+29,因为tableView会在tableView.contentInset.top = 29的情况下,在往下偏移64像素。这里所以应该设置为29-64即可。

/// 设置tableView的contentInset
self.tableView.contentInset = UIEdgeInsetsMake(-35, 0, 0, 0);


##### 四、拓展

1.  去除`tableView`上底部多余的分割线。
    `tableView.tableFooterView = [[UIView alloc] init];`

作者:CoderMikeHe
链接:https://www.jianshu.com/p/127bc31e1519
来源:
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

你可能感兴趣的:(iOS UITableView 表头、表尾、段头、段尾)