我有一个应用程序,我在其中使用图像作为 iphone 中单元格的背景。我正在这样做
cell.backgroundView = [ [[UIImageView alloc] initWithImage:[[UIImage imageNamed:@"chat_cell1.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(6,39,15,60)] ]autorelease];
现在我正在为同一个单元格的内容视图添加另一个图像。它是一个小图像。我需要显示该图像关闭背景视图,背景视图的某些部分实际上位于该图像上方。我需要在背景视图下方。 `
[[cell contentView] insertSubview:imageView belowSubview:cell.backgroundView];
[[cell contentView]sendSubviewToBack:imageView];
`但它仍然显示在背景视图上方。有人可以帮我吗?