嘿,
任何人都可以指导我完成此工作吗,我在表中大约有15个条目,我希望另外15个条目可以在最后一个UITableViewCell中提出更多的负载。有人可以帮我吗?

最佳答案

在表格 View 中显示额外的一行

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return dataRows+1;
    }


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

        //after setting tableviewcell

        if(indexPath.row==dataRows){

        cell.textLabel.text=@"Load More Rows";
        }
    }


 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    {

    if(indexPath.row==dataRows){
    //there you can write code to get next rows
    }
 }

您需要根据显示的行更新numberOfRows变量。

编辑:在获取了额外的条目之后,可以使用以下方法将它们添加到现有的条目数组中。您的原始数组应为NSMutableArray才能使用此方法。
[originalEntriesArray addObjectsFromArray:extraEntriesArray];

10-08 15:03