欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

常见问题

程序员文章站 2022-03-09 19:11:20
...

 

目录

1、tableView上拉加载偏移一段距离

2、出现错误Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]

 


1、tableView上拉加载偏移一段距离

解决方法:

self.tableView.estimatedRowHeight = 0;
self.tableView.estimatedSectionHeaderHeight = 0;
self.tableView.estimatedSectionFooterHeight = 0;
if (@available(iOS 11.0, *)) {
    self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}else {
    self.automaticallyAdjustsScrollViewInsets = NO;
}

2、出现错误Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]

解决方法:cellForRowAtIndexPath 返回的 cell 为 nil。

 

相关标签: 常见问题