错误
最近遇到这样一个问题:
section header height must not be negative - provided height for section 9 is -0.010000
完整的错误:
错误详情错误的原因是:tableview的组头高度不能为负数,返回的第9组高度为-0.01.
当时也是一个用户反映说app闪退了,然后就去友盟查看错误,然后就定位错误,发现定位不到,有点坑.只能看代码了,用户说点这个界面崩,那就看这个界面的代码,发现组头的高度是写死的,就是0.01,怎么会出现负数呢.然后当时就坚定的认为代码没有错,可能是更新的app有缓存.
到后来错误列表有好几条都是同样的错误了,然后重新开始找原因,发现崩溃最多的是iOS10,然后在iOS10上运行了下,果然崩了.
解决方法
导致这个错误的原因可能有很多,下面的解决方法不能解决每个人的问题,希望给大家提供参考,还没解决的请看具体原因然后结合自己的代码分析.
这里的解决方法是,删了这两行代码:
tableView.estimatedSectionHeaderHeight = 0.01
tableView.estimatedSectionFooterHeight = 10
再加上这两个代理方法:
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
return UIView()
}
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
return UIView()
}
具体原因
我特地创建一个控制器来测试,设置组头和组尾的高度.
tableView.rowHeight = 88
tableView.sectionHeaderHeight = 10
tableView.sectionFooterHeight = 0.01
再实现数据源方法,效果如图,发现最上面的不对.
最上面的高度太大然后上面代码注掉,实现他的代理方法.
func numberOfSections(in tableView: UITableView) -> Int {
return 10
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "UITableViewCell", for: indexPath)
cell.backgroundColor = UIColor.orange
return cell
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 88
}
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 10
}
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return 0.01
}
发现在iOS10下,能够达到想要的效果,但是在iOS11下,tableview的组头和组尾的高度不是返回的高度,效果如图:
iOS10和iOS11对比说明在iOS11下没调组头和组尾的代理方法,那就想方法让他调用一下,然后就加了这两行代码:
tableView.estimatedSectionHeaderHeight = 10
tableView.estimatedSectionFooterHeight = 0.01
发现在iOS11下调了代理方法,也确实实现了效果,但是在iOS10下就崩了,原因就是上面的返回高度为负数.解决方法就是删了这两行代码,添加代理方法返回headerView和footerView.
为什么会崩,我猜测的原因是,estimatedSectionHeaderHeight
是和UITableViewAutomaticDimension
来搭配使用的,在iOS11下做了优化,所以iOS11没崩.
欢迎大家来讨论.
网友评论