美文网首页
判断tableView加载完毕

判断tableView加载完毕

作者: 白色天空729 | 来源:发表于2018-07-18 09:56 被阅读15次
     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加载完毕

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