常见问题
程序员文章站
2022-03-09 19:11:20
...
目录
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。
上一篇: 页面抖动问题