0

我在尝试UITableView用网络请求的结果填充 a 时遇到问题。我的代码似乎没问题,因为当我的网络速度很快时它可以完美运行,但是,当它不是时,函数 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath-仍然执行,这会导致错误的访问错误。我推测这是因为上述函数试图使用的数组尚未被填充。这让我想到了我的问题:无论如何我可以UITableView延迟委托方法以避免这种情况吗?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"AlbumsCell";
//UITableViewCell *basicCell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

AlbumsCell *cell = (AlbumsCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (!cell) {
    **// Here is where the Thread 1: EXC_BAD_ACCESS (code=2 address=0x8)**
    cell = [[[AlbumsCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}

    Album *album = [_albums objectAtIndex:[indexPath row]];
    [cell setAlbum:album];

return cell;
}
4

1 回答 1

2

修改您的委托方法以处理“进行中”状态的网络请求。一旦你得到你的回应,调用reloadDataon tableview 它将用正确的数据重新加载表格。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"AlbumsCell";
//UITableViewCell *basicCell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    AlbumsCell *cell = (AlbumsCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (!cell) {
        **// Here is where the Thread 1: EXC_BAD_ACCESS (code=2 address=0x8)**
        cell = [[[AlbumsCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    if ((_albums) && ([_albums count] > [indexPath row])) {
        Album *album = [_albums objectAtIndex:[indexPath row]];
        [cell setAlbum:album];
    } else {
    //show some loading message in the cell
    }

    return cell;
    }
于 2012-10-23T04:58:26.427 回答