美文网首页
ios开发pop界面tableView上下跳动问题

ios开发pop界面tableView上下跳动问题

作者: 不掉头发的程序猿 | 来源:发表于2018-11-19 16:02 被阅读0次

    在Appdelegate中加入

    if(@available(iOS11.0, *)) {

            UITableView.appearance.estimatedRowHeight = 0;

            UITableView.appearance.estimatedSectionFooterHeight = 0;

            UITableView.appearance.estimatedSectionHeaderHeight = 0;

            UITableView.appearance.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;

        }

    ios11前加入self.automaticallyAdjustsScrollViewInsets = NO;

    相关文章

      网友评论

          本文标题:ios开发pop界面tableView上下跳动问题

          本文链接:https://www.haomeiwen.com/subject/cercxqtx.html