将单元格添加到我的表格查看当我在其上滚动并在底部完成时



我在UIViewController中有一个tableView。当我加载视图控制器时,正在加载带有 3 个单元格的表视图。每次我在表格上滚动查看并在它的底部完成时,我希望被添加到其中(其他)3 个单元格。脸书应用程序如何!请帮帮我!这是我在代码中遇到的(未添加单元格):

    -(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
    {
        //I created an int flag because this method (as soon as it initialize the 
        //table) is called 2 times (because when it load the viewController, is called
        // the method that populates the arrays that contain the details to be shown in
        // the cells and reload the tableView)
        if (_flagCells == 0 || _flagCells == 1) {
            _flagCells ++;
            return;
        }
        if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row){
//phpClass is a class that contain scripts used to connect my app to script php for mySQL DB 
//objsRequest is a method of phpClass that receive a query for input and return an array of //results of that query. cellsLimit represent the cells to be shown (Once every 3 to 3) and //numberOfDequeuedCells represent the number of cells to be added (every 3) that is SELECT .. //FROM .. LIMIT 0,3 .... LIMIT 3,3 .... LIMIT 6,3 ....           
[_arrID addObjectsFromArray:[_phpClass objsRequest:[NSString stringWithFormat:@"SELECT ID FROM mii LIMIT %d,%d",_cellsLimit,_numberOfDequeuedCells]]];
            for (int i = (int)[_arrID count]-3; i < [_arrID count]; i++) {
//objRequest is a method of phpClass that receive a query for input and return a string that 
//represent the result of that query
                [_arrNames addObject:[_phpClass objRequest:[NSString stringWithFormat:@"SELECT Name FROM mii WHERE ID = %@",_arrID[i]]]];
                [_arrGen addObject:[_script objRequest:[NSString stringWithFormat:@"SELECT Gen FROM mii WHERE ID = %@",_arrID[i]]]];
//getImg is a method of phpClass that receive the user ID for input and return an image
//representing the user image
                UIImage *img = [_phpClass getImg:_arrID[i]];
                    [_arrImgs insertObject:img atIndex:i];
//Here is the problem because the rows doesn't be added to my tableView
                [_tableView beginUpdates];
                [_tableView insertRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:i inSection:0]] withRowAnimation:UITableViewRowAnimationAutomatic];
            }
            _cellsLimit +=3;
            [_tableView endUpdates];
        }
    }

我前段时间自己也这样做了。如果我没记错的话,那么我只是将其他数据加载到我用作表中数据的容器的数组中。加载数据后,我重新绘制表格。就是这样。

我认为你迷路只是因为你试图把它做得更复杂。

至于你的评论:

[_tableView performSelector:@selector(reloadData) withObject:nil afterDelay:0.001];

 [_tableView performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];

两者都应该在另一个线程中执行 reloadData,因此不应导致循环。但是,即便如此,您也应该在到达表末尾之前添加新数据。

最新更新