我使用cellForRowAtIndexPath函数中的以下代码将背景图像设置为uitableView的单元格:
UIImageView *av = [[UIImageView alloc] initWithFrame:CGRectMake(20, 20, 277, 58)];
av.backgroundColor = [UIColor clearColor];
av.opaque = NO;
av.image = [UIImage imageNamed:@"pattern_gray0.png"];
cell.backgroundView = av;
我希望当用户按下行时将行的颜色更改为绿色并将背景图像保持在同一行。
我该怎么做?提前谢谢。
答案 0 :(得分:0)
您可以在单元格上设置selectedBackgroundView
。