如何更改所选自定义表格视图单元格的药水的背景颜色

时间:2014-07-24 07:56:58

标签: objective-c xcode5 xib tableviewcell

当选择单元格时,是否可以以编程方式设置(从awakeFromNib方法)自定义表格视图单元格的一部分的背景颜色。

到目前为止,我的尝试突出显示整个单元格为红色

UIView *bgColorView = [[UIView alloc] init];
bgColorView.backgroundColor = [UIColor redColor];
[self setSelectedBackgroundView:bgColorView];

1 个答案:

答案 0 :(得分:0)

如果这是可以接受的,请稍微修改一下代码。

UIView *bgColorView = [[UIView alloc] init];
bgColorView.frame=CGRectMake(0,0,200,100); //this could be replaced with numbers to cover portion of your cell
bgColorView.backgroundColor = [UIColor redColor];
[self setSelectedBackgroundView:bgColorView];