仍然無法訪問要加載到自定義單元格的變量。我有一個名爲InSeasonCell的xib,.h,.m。我有一個IBOutlet InSeasonCell * _cell;在rootviewcontroller的.h中。我訪問我的productAtIndex值時遇到lldb錯誤。任何幫助都會很棒。我被告知要閱讀Table View Programming Guide。iOS:自定義單元格lldb內存訪問錯誤
創建
_dataController = [[InSeasonProductDataController alloc] init];
這是在RootViewController的初始化,但傳遞到與產品對象填充它的其他對象。
- (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對象填充併發布。
這與你以前的問題有什麼不同http://stackoverflow.com/questions/15726970/ios-lldb-exc-bad-access-custom-cell,你已經接受了答案? –
請注意,使用'registerNib:...'是加載自定義表格視圖單元格的更簡單的方法,請參閱http://stackoverflow.com/a/15591474/1187415。 –
好的。謝謝,我會看看。 – wwjdm