0

仍然无法访问要加载到自定义单元格中的变量。我有一个名为 InSeasonCell 的 xib、.h、.m。我有一个 IBOutlet InSeasonCell *_cell; 在 rootviewcontroller 的 .h 中。访问我的 productAtIndex 值时出现 lldb 错误。任何帮助都会很棒。有人告诉我阅读 Table View Programming Guide。

我创造

_dataController = [[InSeasonProductDataController alloc] init];

这是 rootviewcontroller 中的 init,但传递给另一个对象,该对象用 Product 对象填充它。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"InSeasonCell";

    InSeasonCell *cell = (InSeasonCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        [[NSBundle mainBundle] loadNibNamed:CellIdentifier owner:self options:nil];
        cell = _cell;
        _cell = nil;
    }
    if(_dataController!=nil){
        Product *productAtIndex = [_dataController objectInListAtIndex:indexPath.row];
        // Configure the cell...
            cell.name.text = productAtIndex.name;
            cell.week.text = productAtIndex.week;
            cell.image.image = productAtIndex.image;
    }

    return cell;
}

我查看了我的代码,发现我正在将一个类中创建的对象传递给另一个类。例如:

-(id)initWithDataController:(InSeasonProductDataController *)dataController spinner:      (UIActivityIndicatorView *)spinner{
       if(self = [super init]){
           _dataController = [dataController retain];
           _spinner = [spinner retain];
       }
       return self;
}

_dataController 稍后在此方法中使用 Product 对象填充并被释放。

4

2 回答 2

0

要解决此错误,您需要在 xib 文件中单击单元原型,然后在属性检查 > 标识符中插入与 .m 文件中相同的名称(我写下“单元”):

在方法中:

  • (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { .... Cell = [tableView dequeueReusableCellWithIdentifier:@"cell"]; Cell = [[MainCustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
于 2013-04-01T00:35:32.450 回答
0

我想到了。我的 Product 对象初始化了变量,我必须为传入的每个变量复制一份。这消除了 lldb 错误。

于 2013-04-01T02:44:48.787 回答