3

我正在尝试为我的标签设置文本。这是代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    newsDataCell *cell = (newsDataCell*)[tableView dequeueReusableCellWithIdentifier:@"newsData"];
    
    if (cell == nil)
    {
        cell = [[newsDataCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"newsData"];
    }
    
   NSDictionary* currentrow =[self.Items objectAtIndex:indexPath.item];
     NSLog(@"currentrow:%@",currentrow);
    //UIImageView *image = (UIImageView*)[cell viewWithTag:0];
    
    UILabel *txtData = (UILabel*)[cell viewWithTag:1];
    NSString *testo = [currentrow objectForKey:@"Date"];
    [txtData setText:testo];
    
    
    UILabel *txtTitolo = (UILabel*)[cell viewWithTag:2];
    txtTitolo.text =[currentrow valueForKey:@"Title"];

    UILabel *txtDescrizione = (UILabel*)[cell viewWithTag:3];
    txtDescrizione.text = [currentrow valueForKey:@"Descr"];

    return cell;
}

我检查并 currentrow 实际上包含该对象。这是我从 Xcode 得到的错误:

2013-09-11 16:04:36.468 ApplicationName[2409:c07] *** 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[__NSArrayM objectForKey:]:无法识别的选择器发送到实例 0x7172f80”*** 首先throw call stack: (0x1333012 0x1158e7e 0x13be4bd 0x1322bbc 0x132294e 0xc5f4 0x1578fb 0x1579cf 0x1401bb 0x150b4b 0xed2dd 0x116c6b0 0x265bfc0 0x265033c 0x2650150 0x25ce0bc 0x25cf227 0x25cf8e2 0x12fbafe 0x12fba3d 0x12d97c2 0x12d8f44 0x12d8e1b 0x22757e3 0x2275668 0x9cffc 0x2c2d 0x2b55) libc++abi.dylib: terminate called throwing an exception

我使用 valueForKey 得到同样的错误:

txtTitolo.text =[currentrow valueForKey:@"Title"];

这里是:

2013-09-11 16:09:34.478 ApplicationName[2409:c07] *** 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[__NSArrayM valueForKey:]:无法识别的选择器发送到实例 0x7172f80”*** 首先throw call stack: (0x1333012 0x1158e7e 0x13be4bd 0x1322bbc 0x132294e 0xc5f4 0x1578fb 0x1579cf 0x1401bb 0x150b4b 0xed2dd 0x116c6b0 0x265bfc0 0x265033c 0x2650150 0x25ce0bc 0x25cf227 0x25cf8e2 0x12fbafe 0x12fba3d 0x12d97c2 0x12d8f44 0x12d8e1b 0x22757e3 0x2275668 0x9cffc 0x2c2d 0x2b55) libc++abi.dylib: terminate called throwing an exception

怎么了?

4

4 回答 4

0

我做的!我刚刚使用了“stringWithFormat”,它的工作原理是这样的:

NSString *testo = [NSString stringWithFormat:@"%@",[currentrow objectForKey:@"Date"]];

无论如何,谢谢你的回答!

于 2013-09-20T19:36:10.393 回答
0

看起来currentrow不是NSDictionary(您假设的)。它是一个NSArray.

NSDictionary* currentrow =[self.Items objectAtIndex:indexPath.item];
// Not a dictionary, it is an array.

这就是您遇到此崩溃的原因。如果这是解析的 JSON 响应,请检查 JSON 的结构。

希望有帮助!

于 2013-09-11T14:36:56.103 回答
0

A. 这个错误不是由 Xcode 产生的,而是由运行时环境产生的。

B. 这意味着 currentrow 不是字典而是数组。

C. 你是怎么检查的?您在哪里创建项目并将其放入列表中?

于 2013-09-11T14:29:54.880 回答
0

对我来说,这是可行的。

customerBillerFieldsArray = [self.detailItem valueForKey:@"customerBillerFileds"];

之前我用过customerBillerFieldsArray = [self.detailItem objectForKey:@"customerBillerFileds"];

于 2015-08-19T05:23:02.947 回答