tableView 使用 reloadSections:withRowAnimation: 时,会跳动的问题

Posted Somebodywx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tableView 使用 reloadSections:withRowAnimation: 时,会跳动的问题相关的知识,希望对你有一定的参考价值。

ios11默认开启Self-Sizing 如果你没用到预估高度 那么你尝试在Appdelegate.m中的didFinishLaunchingWithOptions方法中,加上如下代码,看看是否有效

if (@available(iOS 11.0, *)) {
        UITableView.appearance.estimatedRowHeight = 0;
        UITableView.appearance.estimatedSectionFooterHeight = 0;
        UITableView.appearance.estimatedSectionHeaderHeight = 0;
    }

  

 

以上是关于tableView 使用 reloadSections:withRowAnimation: 时,会跳动的问题的主要内容,如果未能解决你的问题,请参考以下文章

Swift初窥--使用Swift实现TableView

使用重用标识符调用 super.tableView(tableView: UITableView, cellForRowAtIndexPath...

在tableview中使用refreshcontrol时,如何知道用户是不是还在按住tableview?

使用调用自定义 tableview 单元格的函数简化 tableview 代码

使用 mvvm 搜索 tableview

如何使用 NSSet 填充 tableView? (迅速)