gpt4 book ai didi

ios - 顶 View 时如何进行分页

转载 作者:行者123 更新时间:2023-12-01 16:08:40 35 4
gpt4 key购买 nike

我想在用户将tableView滚动到顶部时进行分页,因为我已经使用了这种UIScrollView方法。但是它将多次调用api

最佳答案

不好意思

当服务器提供数据计数数量

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
if (indexPath.row == 0) { // indexpath.row == 0 means top cell in tableViewCell
if (arrNews.count < totalPageCount ) { //totalPageCount means total number of data exist in server which is needs in server resopnse
[self getDataFromServer];
}
}
}

服务器未提供数据计数时
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
if (indexPath.row == 0) { // indexpath.row == 0 means top cell in tableViewCell
if (isMoreData) { //isMoreData is bolean you need to disable while not data found from server
[self getDataFromServer];
}
}
}

关于ios - 顶 View 时如何进行分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44713795/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com