技术 学习

小技巧 - UITableViewStyleGrouped奇怪偏

2018-07-20  本文已影响315人  Jacob_LJ
小技巧

1 问题描述

发现项目里,非自己接手的任务中,使用了UITableViewStyleGrouped样式的TableView都出现一个固定高度的偏移值,效果如下图:


section = 0的顶部出现奇怪偏移

由于项目代码迭(qian)代(zuozhe)时(dai)间(ma)长(lan),基类已经被搞到面目全非,定位问题较为困难(上图还是挑了逻辑最简单的 VC作为参考😆)。

为了防止啥都能杠的yin,此处声明,项目确实在进行代码整合和 clean & clear 中,只是有些基类涉并影响业务范围较大,所以还未纳入 TaskList 而已

2 问题产生场景

自己接手的任务代码没有该问题,其他则有问题,认真对比之后发现,区别只是多了下述两行代码。(平时本人写业务代码都有固定的结构模式,而下述代码的处理方式是防止 iOS版本迭代而产生不必要问题留的后手,事实证明起效了😋)

self.tableView.tableHeaderView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, CGFLOAT_MIN)];
self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, CGFLOAT_MIN)];

3 问题定位

3.1 从简单 demo 切入

demo 代码如下:

#import "ViewController.h"

@interface ViewController ()<UITableViewDelegate, UITableViewDataSource>

@property (nonatomic, weak) UITableView *tableView;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.navigationItem.title = @"GroupedStyleTest";
    [self setUpTableView];
}

- (void)setUpTableView {
    UITableView *tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
    [self.view addSubview:tableView];
    self.tableView = tableView;
    
    self.tableView.delegate = self;
    self.tableView.dataSource = self;
}

#pragma mark - UITableViewDelegate, UITableViewDataSource
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 2;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 3;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
    }
    return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 50;
}

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

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
    return 10;
}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
    return nil;
}

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
    return nil;
}

@end

运行效果:


正常的

木有问题啊,很正常是不是~😏
但如果在设置代理之前,你对 tableFooterView 动了手,就不是这样了
动手代码如下:

- (void)setUpTableView {
    UITableView *tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
    [self.view addSubview:tableView];
    self.tableView = tableView;
    
//    self.tableView.tableFooterView = [UIView new];
    // 或
    self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, CGFLOAT_MIN)];
    
    self.tableView.delegate = self;
    self.tableView.dataSource = self;
}

奇怪偏移来了:


偏移了

那如果你在设置代理之后动了tableFooterView呢?

- (void)setUpTableView {
    UITableView *tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
    [self.view addSubview:tableView];
    self.tableView = tableView;
    
    self.tableView.delegate = self;
    self.tableView.dataSource = self;

//    self.tableView.tableFooterView = [UIView new];
    // 或
    self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, CGFLOAT_MIN)];
}

what??!!!(此处应有黑人问号~😆),正常了?

其实,这个奇葩问题,很早就有人发现了UITableViewStyleGrouped类型的UITabelView使用技巧 - 简书

具体的原因我还没查到,欢迎有关注该问题的你,不吝赐教。

好,目前我们已经可以定位到问题所在,一定是某些地方在设置代理之前,设置过tableFooterView

3.2 问题原因

最后发现,前作者在基类中带有如下代码:

self.tableView.tableFooterView = [UIView new];

这就导致,设置 tableview实例 delegate 之前,上述问题代码一定会被先执行。这样就导致了大片的奇怪偏移现象出现,纳闷什么前作者要添加上述代码在基类呢?我稍微查了一下发现这是一个历史遗留的问题:大部分都是为了解决下面空 cell 多余的分割线。

image.png
参考文章:
ios – 消除UITableView下面的额外分隔符 - 代码日志
How to Remove Extra Separator Lines in a UITableView

0代码隐藏GroupedTableView上边多余的间隔 · sunnyxx的技术博客

4 解决方法

  1. 鉴于可直观检查 UI 变化确定是否全覆盖解决问题,决定从基类中将问题代码移除。
  2. 或者,在设置代理之前添加下述代码(属于我的后手😆)
self.tableView.tableHeaderView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, CGFLOAT_MIN)];
self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, CGFLOAT_MIN)];

5 参考

无其他了。。。

PS:如有兴趣,可以试试下面情况的哦😯

情况1 在设置delegate前设置 tableFooterView,导致第一个section有一个较高的高度
情况2 在设置delegate后设置 tableFooterView

情况3 在设置delegate前设置 tableHeaderView,
情况4 在设置delegate后设置 tableHeaderView,

情况5,试试 tableview 的两个属性estimatedSectionFooterHeightestimatedSectionHeaderHeight的影响

上一篇下一篇

猜你喜欢

热点阅读