6

我有UITableView。在tableView:cellForRow:atIndexPath:方法中(当数据填充到单元格时)我实现了某种延迟加载。如果程序在后台rowData NSDictionary启动方法中没有 key(key==row number) 的对象。requestDataForRow:所以在单元格变得可见后,单元格中的数据会被填充一点。这是代码:

static int requestCounter=0;

-(void)requestDataForRow:(NSNumber *)rowIndex
{
    requestCounter++;
    //NSLog(@"requestDataForRow: %i", [rowIndex intValue]);
    PipeListHeavyCellData *cellData=[Database pipeListHeavyCellDataWithJobID:self.jobID andDatabaseIndex:rowIndex];
    [rowData setObject:cellData forKey:[NSString stringWithFormat:@"%i", [rowIndex intValue]]];
    requestCounter--;

    NSLog(@"cellData.number: %@", cellData.number);

    if (requestCounter==0)
    {
        //NSLog(@"reloading pipe table view...");
        [self.pipeTableView performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];
    };
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *MyIdentifier = @"pipeCellIdentifier";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
    [[NSBundle mainBundle] loadNibNamed:@"PipesForJobCell" owner:self options:nil];
    cell = pipeCell;
    self.pipeCell = nil;


    PipeListHeavyCellData *cellData=[[PipeListHeavyCellData alloc] init];

    if ([rowData objectForKey:[NSString stringWithFormat:@"%i", indexPath.row]]==nil)
    {
        //NSLog(@"        nil data for row: %i", indexPath.row);
        [self performSelectorInBackground:@selector(requestDataForRow:) withObject:[NSNumber numberWithInt:indexPath.row]];
    }
    else
    {
        //NSLog(@"        has data for row: %i", indexPath.row);
        PipeListHeavyCellData *heavyData=[[PipeListHeavyCellData alloc] init];
        heavyData=(PipeListHeavyCellData *)[rowData objectForKey:[NSString stringWithFormat:@"%i", indexPath.row]];
        cellData._id=[heavyData._id copy];
        cellData.number=[heavyData.number copy];
        cellData.status=[heavyData.status copy];
};

此代码有效,一切正常,我的表有 2000 行,如果用户从索引为 10 的单元格快速滚动到索引为 2000 的单元格。他必须等待很长时间,直到所有拉取数据请求都完成(对于第 11、12、13、...、2000 行),因为在用户滚动表格视图时行变得可见,因此requestDataForRow为它们调用了该方法。

我怎样才能优化这些东西?

4

1 回答 1

4

我不得不做类似的事情。您需要先创建一个队列来处理最近添加的项目。

例如,用户打开表,有 10 个请求排队。您将第一个对象出列并开始获取第一行的数据。然而,用户随后向下滚动到第 31-40 行。然后,您必须在队列中的前 10 行之前插入这些行,因为它们现在具有更高的优先级。关键是您不会立即立即启动 10 个请求,而是按顺序处理它们。这样,当用户滚动时,您只会“浪费”一个请求——最后一个请求。

实际实现这一点的一种简单方法是使用[tableView indexPathsForVisibleRows].

于 2012-05-15T16:58:36.420 回答