我在下面有这个代码来动态填充我的UITableView。
我必须显示两种单元格:带有背景图像的常规单元格和带有常规背景图像的单元格,以及标签和按钮。
如果Indexpath.row小于控制变量,则绘制常规单元格。如果没有,则绘制带有按钮和标签的单元格。
这是代码
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *MyIdentifier = @"MyIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:MyIdentifier] autorelease];
}
UIImage *imageU;
if (indexPath.row < controlVariable) {
imageU = [[[UIImage alloc]initWithContentsOfFile:[[NSBundle mainBundle]
pathForResource:[NSString stringWithFormat: @"table%d", indexPath.row] ofType:@"jpg"]] autorelease];
cell.imageView.image = imageU;
} else {
imageU = [[[UIImage alloc]initWithContentsOfFile:[[NSBundle mainBundle]
pathForResource:[NSString stringWithFormat: @"table-pg%d",numberX]
ofType:@"jpg"]] autorelease];
cell.imageView.image = imageU;
NSString * myString = [NSString stringWithFormat: @"pago%d", numberX];
UILabel * myLabel = [[UILabel alloc] initWithFrame:CGRectMake(5.0, 49.0, 200.0, 22.0)];
[myLabel setTextAlignment:UITextAlignmentLeft];
[myLabel setBackgroundColor:[UIColor blueColor]];
[myLabel setClipsToBounds:YES];
[myLabel setFont:[UIFont systemFontOfSize:14.0]];
[myLabel setTextColor:[UIColor blackColor]];
[myLabel setText: myString];
[myLabel setAlpha:0.6];
[cell addSubview: myLabel];
[myLabel release];
UIButton *buyButton = [[UIButton alloc] initWithFrame:CGRectMake( 220, 4, 100, 35)];
buyButton.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
buyButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;
[buyButton setTitle:NSLocalizedString(@"buyKey", @"") forState:UIControlStateNormal];
[buyButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
buyButton.titleLabel.font = [UIFont boldSystemFontOfSize:14];
UIImage *newImage = [[[[UIImage alloc]initWithContentsOfFile:[[NSBundle mainBundle]
pathForResource: @"whiteButton" ofType:@"png"]] autorelease]
stretchableImageWithLeftCapWidth:12.0f topCapHeight:0.0f];
[buyButton setBackgroundImage:newImage forState:UIControlStateNormal];
[buyButton addTarget:self action:@selector(comprar:) forControlEvents:UIControlEventTouchDown];
buyButton.backgroundColor = [UIColor clearColor];
[buyButton setTag:indexPath.row];
[cell addSubview:buyButton];
[buyButton release];
}
return cell;
}
这段代码的问题是:当我向下滚动UITableView并使用按钮和标签到达常规单元格和单元格之间的区域时,我看到它正确渲染,但是如果我在深入下去之后上升,我会看到按钮和标签被添加到不应该有它们的单元格中。从现在开始,所有单元格都包含按钮和标签......
就像细胞在绘制之前没有释放它的内容。就像标签和按钮被添加到单元格上已有的其他按钮和标签之上。细胞在再次绘制之前不会释放其内容。
如何解决?
感谢您的帮助。
注意:在做出两个第一个答案建议的更改后,我看到几乎没有差异。现在,并非所有细胞都错了,只有一些。每当我向下滚动表格并返回到表格的开头时,它们就会改变。
答案 0 :(得分:5)
您应该为您正在使用的每个单元格类型使用单独的reuseIdentifier
。在这种情况下,您将要使用两个。
您还希望在出现未命中时创建/添加UILabel
和UIButton
,而不是每次运行时都会创建/添加..在伪代码中:
UILabel * lbl;
UIButton * btn;
cell = [table dequeueReusableCellWithIdentifier:correctIdentifier];
if (cell == nil)
{
cell = ...; // alloc cell
lbl = ...;
lbl.tag = kTagLabel;
[cell addSubView:lbl];
btn = ...;
btn.tag = kTagButton;
[cell addSubView:btn];
}
else
{
lbl = (UILabel*)[cell viewWithTag:kTagLabel];
btn = (UIButton*)[cell viewWithTag:kTagButton];
}
//... now set the text/image appropriately.
否则,每次单元格从表中出列时,都会创建一个标签和按钮。向上和向下滚动将导致创建许多永远不会被释放的标签和按钮。
答案 1 :(得分:1)
您应该使用两个不同的reuseIdentifiers;一个用于带有图像的单元格,一个用于带有图像和按钮的单元格。问题是你的一个单元格类型正在被重用,但它的内容在它出列时不会(也不应该)被清除。