判断tableView加载完毕

 func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
        
        if indexPath.row == (tableView.indexPathsForVisibleRows?.last)?.row  {
            //end of loading
            prints("===")
         }
    }

参考文献:
https://www.jianshu.com/p/044742ffa9ba
https://blog.csdn.net/m372897500/article/details/50736175

你可能感兴趣的:(判断tableView加载完毕)