美文网首页
iOS 11.0UITableView滑动闪动bug解决

iOS 11.0UITableView滑动闪动bug解决

作者: iOS技术小卒 | 来源:发表于2018-05-29 13:03 被阅读19次
    iOS 11.0UITableView滑动闪动bug解决

    //解决上拉跳跃式加载问题

        if (@available(iOS 11.0, *)) {

            systemNotiTabelView.estimatedRowHeight = 0;

            systemNotiTabelView.estimatedSectionFooterHeight = 0;

            systemNotiTabelView.estimatedSectionHeaderHeight = 0;

            systemNotiTabelView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;

        }

    相关文章

      网友评论

          本文标题:iOS 11.0UITableView滑动闪动bug解决

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