填充表格视图时发生奇怪的错误。这是我做过无数次的事情,但现在我陷入了可能很简单的事情。也许我刚醒太久。

我有一个名为riverGauge的对象,该对象负责从Web服务下载数据。然后将相关数据放入NSDictionary对象中,并作为属性返回。从字典中的键构建的键数组也作为属性返回。

在我的cellForRowAtIndexPath方法中,我使用键数组在字典中查找值并在表视图中呈现它们。很标准。这是我的cellForRowAtIndexPath:

-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *cellID = @"DataCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if(cell == nil){
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
    }

    NSDate *key = [riverGauge.gaugeFlowKeys objectAtIndex:indexPath.row];

    NSString *cellText = [riverGauge.gaugeFlows objectForKey:key];
    NSLog(@"CELL TEXT = %@", cellText);

    [cell.textLabel setText:cellText]; // Error on last pass. No errors without this line

    return cell;
}


在填充最后一个单元格后,我得到了无法识别的选择器异常。

2014-08-28 12:07:20.318 RiverGuage[9858:60b] -[__NSCFNumber length]: unrecognized selector sent to instance 0xa07b180
2014-08-28 12:07:20.319 RiverGuage[9858:60b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFNumber length]: unrecognized selector sent to instance 0xa07b180'


我已验证返回的键数与字典中的记录数匹配,并且指定的键有值。 log语句适用于列表中的每个项目,并且不会返回任何异常值。如果注释了[cell.textLabel setText:cellText],cellForRowAtIndexPath方法将返回无错误。为什么会这样?谢谢!

最佳答案

我最好的猜测是您的[riverGauge.gaugeFlowKeys objectAtIndex:indexPath.row]返回一个NSNumber。在这种情况下,请执行以下操作以设置号码。

NSNumber *cellTextNumber = [riverGauge.gaugeFlows objectForKey:key];
NSString *cellText = [cellTextNumber stringValue];
NSLog(@"CELL TEXT = %@", cellText);
[cell.textLabel setText:cellText];

关于ios - cellForRowAtIndexPath中的错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25553557/

10-11 16:14