答案 0 :(得分:0)
看看这个,
UIImageView *backgroundCellImage=[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 768, 80)];
backgroundCellImage.image=[UIImage imageNamed:@"ImageName1.png"];
UIImageView *separatorImage=[[UIImageView alloc] initWithFrame:CGRectMake(100, 0, 62, 80)];
separatorImage.image=[UIImage imageNamed:@"ImageName2.png"];
[cell.contentView addSubview:backgroundCellImage];
[cell.contentView addSubview:separatorImage];
[backgroundCellImage release];
[separatorImage release];
答案 1 :(得分:0)
dequeueReusableCellWithIdentifier
来获取您的单元格(您应该这样做),那么您将需要设置单元格的所有属性的值,否则您将从之前的单元格中留下垃圾。
例如:
cell.detailedTextLabel.text = @"";
如果此特定单元格没有详细文本。正如@Akshay所说,你需要发布你的cellForRow代码,这样我们才能看到发生了什么。