3 回答
TA贡献1858条经验 获得超8个赞
我认为您走在正确的道路上,但是根据以下课程的类定义selectedBackgroundView:
对于普通样式表(UITableViewStylePlain)中的单元,默认值为nil;对于节组表UITableViewStyleGrouped,默认值为nil。
因此,如果您使用的是普通样式表,则需要UIView分配一个具有所需背景色的新值,然后将其分配给selectedBackgroundView。
或者,您可以使用:
cell.selectionStyle = UITableViewCellSelectionStyleGray;
如果选中该单元格时您想要的只是一个灰色背景。希望这可以帮助。
TA贡献1836条经验 获得超3个赞
无需自定义单元格。如果只想更改单元格的选定颜色,则可以执行以下操作:
目标C:
UIView *bgColorView = [[UIView alloc] init];
bgColorView.backgroundColor = [UIColor redColor];
[cell setSelectedBackgroundView:bgColorView];
迅速:
let bgColorView = UIView()
bgColorView.backgroundColor = UIColor.redColor()
cell.selectedBackgroundView = bgColorView
斯威夫特3:
let bgColorView = UIView()
bgColorView.backgroundColor = UIColor.red
cell.selectedBackgroundView = bgColorView
Swift 4.x:
let bgColorView = UIView()
bgColorView.backgroundColor = .red
cell.selectedBackgroundView = bgColorView
TA贡献1874条经验 获得超12个赞
如果您有一个分组的表,每个节只有一个单元格,只需在代码中添加以下额外的行即可: bgColorView.layer.cornerRadius = 10;
UIView *bgColorView = [[UIView alloc] init];
[bgColorView setBackgroundColor:[UIColor redColor]];
bgColorView.layer.cornerRadius = 10;
[cell setSelectedBackgroundView:bgColorView];
[bgColorView release];
不要忘记导入QuartzCore。
- 3 回答
- 0 关注
- 445 浏览
添加回答
举报