码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-05-11 20:30:50      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:ios 11   with   方法   高度   nbsp   app   option   tab   cti   

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

标签:ios 11   with   方法   高度   nbsp   app   option   tab   cti   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!