我需要在表格单元格中绘制图像。到目前为止,在创建视图并将其分配给单元格后,我无法正确引用UIImageView。例如,相同的过程适用于UILabel。
我无法弄清楚我做错了什么。
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UIImageView *imageView;
UILabel *title;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifier] autorelease];
// Setup title
title = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 30)] autorelease];
title.tag = 1;
[cell.contentView addSubview:title];
// Setup image
UIImageView* imageView = [[[ UIImageView alloc] initWithFrame:
CGRectMake(50, 0, 50, 50)] autorelease];
imageView.tag = 2;
[cell.contentView addSubview:imageView];
} else {
// Get references to cell views
title = (UILabel *)[cell.contentView viewWithTag:1];
imageView = (UIImageView *)[cell.contentView viewWithTag:2];
}
NSLog(@"%@", [title class]); // UILabel
NSLog(@"%@", [imageView class]); // CRASH! EXC_BAD_ACCESS
return cell;
}
答案 0 :(得分:2)
问题是imageView
变量的范围。如果单元格尚不存在,则创建仅存在于if块中的新UIImageView
。它隐藏了您之前声明的变量,并在if-block结束后消失。
而不是
UIImageView *imageView = ...
你应该写一下
imageView = ...
否则,您创建的新对象与您在方法顶部声明的对象无关,原始imageView
仍未定义。