是否可以在选择单元格时以编程方式设置(通过 awakeFromNib 方法)自定义表格视图单元格的一部分的背景颜色。
到目前为止,我的尝试以红色突出显示整个单元格
UIView *bgColorView = [[UIView alloc] init];
bgColorView.backgroundColor = [UIColor redColor];
[self setSelectedBackgroundView:bgColorView];
是否可以在选择单元格时以编程方式设置(通过 awakeFromNib 方法)自定义表格视图单元格的一部分的背景颜色。
到目前为止,我的尝试以红色突出显示整个单元格
UIView *bgColorView = [[UIView alloc] init];
bgColorView.backgroundColor = [UIColor redColor];
[self setSelectedBackgroundView:bgColorView];
如果这是可以接受的,请稍微修改您的代码。
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];