处于“突出显示”状态时更改单元格的颜色

时间:2012-06-25 15:33:27

标签: iphone ios xcode

如何更改表格视图单元格中显示的默认(蓝色)颜色? (只是覆盖颜色,就像你点击Settings.app中的一个选项一样,它在你带到那里之前变成了蓝色)

2 个答案:

答案 0 :(得分:4)

  

selectedBackgroundView

     

视图在被选中时用作单元格的背景。

@property(nonatomic, retain) UIView *selectedBackgroundView

来自UITableViewCell Class Reference

制作UIView,设置您希望的backgroundColor,并将其设置为您的单元格的selectedBackgroundView

答案 1 :(得分:3)

你可以使用其中任何一个

[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
//or
[cell setSelectionStyle:UITableViewCellSelectionStyleGray];

也许这会对你有所帮助