iOS 7 - 故事板。为什么不可能设置uitableViewCell选择颜色

时间:2014-05-15 13:59:37

标签: ios7 uinavigationcontroller uitableview xcode-storyboard

总的来说,故事板是一个非常棒的高效工具,我不能没有。但...... 我正在试着做一些我认为简单的事情:为tableView单元格设置选择颜色。不可能。

我的故事板很简单:navigationController --root controller - > tableViewController

以下是截图。

该应用。注意苍白,病态的灰色细胞选择颜色应该是蓝色。 enter image description here

故事板截图。

NavigationController。请注意,我将导航栏设置为不透明。

enter image description here

TableViewController。再次,坚固的不透明导航栏。 enter image description here

TableViewCell。请注意,我将选择颜色设置为蓝色而不是苍白,灰色。 enter image description here

有人可以向我解释如何说服Storyboard如何做到这一点。

感谢。

1 个答案:

答案 0 :(得分:6)

在故事板中,执行以下操作:

  1. 将UIView作为原型单元格的背景视图。这应该低于你的UILabels。将其背景颜色更改为所需的颜色。 (背景非色调)

  2. 选择您的原型单元并转到其连接检查器(Command + Alt + 6)。

  3. selectedBackgroundView插座拖到刚刚放置的背景视图中。

  4. 来源:How to change background selected color storyboard static cells