美文网首页
2023-05-06

2023-05-06

作者: 花开半夏又一年 | 来源:发表于2023-05-05 12:24 被阅读0次

    tableview 上拉顺滑加载

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

        NSInteger row = [indexPath row];

        if (row == self.dataArray.count - 2 && self.isfinish) {

    //dataArray是存放数据的数组,isfinish是请求是否完成的标识

            self.pageNum++;//第几页

         //请求参数//具体请求

        }

    }

    相关文章

      网友评论

          本文标题:2023-05-06

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