解决UITableView界面刷新时回弹

UITableView界面刷新时回弹的效果在iOS 11后出现,所以需要在didFinishLaunchingWithOptions代理方法或是当前UITableView界面中增加以下方法即可:


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

        UITableView.appearance.estimatedRowHeight = 0;

        UITableView.appearance.estimatedSectionFooterHeight = 0;

        UITableView.appearance.estimatedSectionHeaderHeight = 0;

    }

你可能感兴趣的:(解决UITableView界面刷新时回弹)