iOS 11.0UITableView滑动闪动bug解决

iOS 11.0UITableView滑动闪动bug解决_第1张图片
图片发自App


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

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

        systemNotiTabelView.estimatedRowHeight = 0;

        systemNotiTabelView.estimatedSectionFooterHeight = 0;

        systemNotiTabelView.estimatedSectionHeaderHeight = 0;

        systemNotiTabelView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;

    }

你可能感兴趣的:(iOS 11.0UITableView滑动闪动bug解决)