Bugly报错:section header height must not be negative - provided height for section 1 is -0.010000

1、 报错如图

Bugly报错:section header height must not be negative - provided height for section 1 is -0.010000_第1张图片
屏幕快照 2019-03-04 下午3.34.31.png

2、 APP有的闪退有的不闪退,找了好久终于找到原因了,发现只有在iOS11以下的版本才会出现这个问题,在iOS11和iOS12版本上不会出现这个问题。

3 、问题:

if (IOS_Device > 11.0) {
    self.tableView.estimatedRowHeight = 1.1f;
    self.tableView.estimatedSectionHeaderHeight = 1.1f;
    self.tableView.estimatedSectionFooterHeight = 1.1f;
}

在iOS11以下上面调用estimatedSectionHeaderHeight的时候高度会返回负数,所以在iOS11的时候再调用

你可能感兴趣的:(Bugly报错:section header height must not be negative - provided height for section 1 is -0.010000)