Tableview jumps when pulling up and loading more iOS tableview

///After ios11, the following three lines of code need to be added to solve the problem of automatic scrolling and offset of the screen after pull-up loading

        _tableView.estimatedRowHeight = 0;

        _tableView.estimatedSectionHeaderHeight = 0;

        _tableView.estimatedSectionFooterHeight = 0;

Guess you like

Origin blog.csdn.net/sss1507089/article/details/87873092