标签:automatic scroll style view span tom 解决 问题 关于
//解决iOS11关于隐藏导航栏后带有scrollView界面出现,下移问题 if (@available(iOS 11.0, *)) { self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; } else { self.automaticallyAdjustsScrollViewInsets =NO; }
同理scrollView一样处理
iOS11关于隐藏导航栏后带有tableView界面出现,下移问题
标签:automatic scroll style view span tom 解决 问题 关于
原文地址:https://www.cnblogs.com/gaoxiaoniu/p/9585028.html