监听表格加载数据完毕

-(void) tableView:(UITableView *)tableView willDisplayCell:(nonnull UITableViewCell *)cell forRowAtIndexPath:(nonnull NSIndexPath *)indexPath{

    if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row){

        ///加载完毕

    }

}

原文地址:https://www.cnblogs.com/piaojin/p/6046628.html