0

我试图计算我的数组以设置为表中的行数,然后将其乘以 2,因为我在每个单元格之间有一个不可见的单元格,以使单元格看起来是分开的。每次我尝试构建时,都会收到此错误:

由于未捕获的异常“NSRangeException”而终止应用程序,原因:“ * -[__NSArrayM objectAtIndex:]: index 3 beyond bounds [0 .. 2]”

这是我正在使用的代码:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  return [xmlParser.calls count] * 2; 
}

cellForRowAtIndexPath:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{    
  static NSString *CellIdentifier = @"Cell";
  static NSString *CELL_ID2 = @"SOME_STUPID_ID2";
  JointCAD *currentCall = [[xmlParser calls] objectAtIndex:indexPath.row];
  self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"texture3.png"]];

  [self.tableView setSeparatorColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"texture3.png"]]];

  if (indexPath.row % 2 == 1) {
    UITableViewCell * cell2 = [tableView dequeueReusableCellWithIdentifier:CELL_ID2];

    if (cell2 == nil) {
      cell2 = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
                                       reuseIdentifier:CELL_ID2];
      [cell2.contentView setAlpha:0];
      [cell2 setUserInteractionEnabled:NO];
      [cell2 setBackgroundColor:[UIColor clearColor]];
    }
    return cell2;
  }

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

  if (cell == nil) {
    cell = [[TableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
  }

  cell.callTypeLabel.text = currentCall.currentCallType;
  cell.locationLabel.text = currentCall.location;
  cell.unitsLabel.text = currentCall.units;
  cell.stationLabel.text = [@"Station: " stringByAppendingString:currentCall.station];
  cell.contentView.layer.backgroundColor = [UIColor whiteColor].CGColor;
  cell.contentView.layer.frame = CGRectMake(0, 0, cell.contentView.frame.size.width, cell.contentView.frame.size.height);
  cell.contentView.layer.borderWidth = 1.0;
  cell.contentView.layer.borderColor = [UIColor blackColor].CGColor;

  if ([currentCall.county isEqualToString:@"W"]) {  
    cell.countyImageView.image = [UIImage imageNamed:@"blue.png"];
  } else {
    cell.countyImageView.image = [UIImage imageNamed:@"green.png"];
  }

  if ([currentCall.callType isEqualToString:@"F"]) {  
    cell.callTypeImageView.image = [UIImage imageNamed:@"red.png"];
  } else {
    cell.callTypeImageView.image = [UIImage imageNamed:@"yellow.png"];
  }
  return cell;
}
4

3 回答 3

0

编辑:

仔细看了看。只需添加/2

JointCAD *currentCall = [[xmlParser calls] objectAtIndex:indexPath.row / 2];

它会起作用的。刚刚注意到下面的相同答案richard


正如 mayuur 所注意到的:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

// n = [xmlParser.calls count]
// Ok, we have n*2 items (but calls has only n!):
return [xmlParser.calls count] * 2;
// calls has n items in it, but you return n*2 items

然后在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

// n = [xmlParser.calls count]
// give me object from calls at index (which will be in range [0; n*2 - 1], 
// which could be beyond [0; n-1] which you originally have)
JointCAD *currentCall = [[xmlParser calls] objectAtIndex:indexPath.row];

所以你应该删除乘以 2 或自己建议一些东西,除非 xmlParser.calls 是一个空数组,否则你总是会得到这个错误。

于 2012-10-11T06:07:43.270 回答
0

当您在cell.textLabel.text = [array objectAtIndex:indexPath.row];超出限制范围内执行类似操作时发生错误。但是,您需要在其间留下不可见(空白)单元格,您可以在数据源方法中设置一些if...else条件,以防止数组限制。也设置适当的计数。UITableViewcellForRowAtIndexPathreturnnumberOfCells

比如,如果你的数组中有 4 个值。所以应该制作3个不可见的单元格。

1st Cell

blank

2nd Cell

blank

3rd Cell

blank

4th Cell

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{
    return [xmlParser.calls count] + (([xmlParser.calls count]%2)+1);
}

在你的cellForRowAtIndexPath方法中,做这样的条件,

if(indexPath.row==0) 
{ 
    cell.textLabel.text = [array objectAtIndex:indexPath.row]; 
} 
else if((indexPath.row+1)%2!=0) 
{ 
   cell.textLabel.text = [array objectAtIndex:indexPath.row]; 
}
else
{
   NSLog(@"%d is blank cell",indexPath.row);
}
于 2012-10-11T06:19:31.180 回答
0

您正在乘以数组计数,没什么大不了的

return [xmlParser.calls count] * 2;

但是您应该将除以indexPath.row2 以获得数据源的实际索引。该表假定您有一个大小为 2n 的数据源,因此该表将使用索引路径访问 0 .. 2n。

JointCAD *currentCall = [[xmlParser calls] objectAtIndex:(indexPath.row/2)]
于 2012-10-11T06:24:09.103 回答