ios11以上系统上拉刷新列表偏移的问题

ios11以上系统上拉刷新列表偏移的问题

#ios

方法1

if (@available(iOS 11.0, *)) {
    self.tableView.estimatedRowHeight = 0;
    self.tableView.estimatedSectionFooterHeight = 0;
    self.tableView.estimatedSectionHeaderHeight = 0;
    self.tableView.contentInsetAdjustmentBehavior= UIScrollViewContentInsetAdjustmentNever;
}
发布了191 篇原创文章 · 获赞 23 · 访问量 12万+

猜你喜欢

转载自blog.csdn.net/pureszgd/article/details/102516595