-1
CellData *cellData = [self.tableElements objectAtIndex:indexPath.row];
        NSLog(@"name is %@",[self.tableElements objectAtIndex:1]);
        cell.lbl.text = cellData.name;

当我能够访问我的 NSObject 类变量时出现错误。self.tableElements 是一个已解析元素的数组。

4

1 回答 1

1

cellData不是你想象的那样,你认为它是一个CellData对象,但它实际上是一个NSArray,仔细检查self.tableElements持有的是什么。

于 2013-01-24T06:10:10.790 回答