首页 > 其他 > 详细

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

时间:2018-05-11 19:27:15      阅读:397      评论:0      收藏:0      [点我收藏+]

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: 时,会跳动的问题

原文:https://www.cnblogs.com/somebodywx/p/9025553.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!