Watchkit表行背景颜色以编程方式

时间:2015-02-21 18:34:19

标签: ios objective-c tablerow watchkit

有没有办法以编程方式设置WatchKit Table Row的颜色?

在我的应用的iPhone部分,我将每个特定的Table Cell设置为:

cell.backgroundColor = [self colorWithHexString:[stringArrayColor objectAtIndex:indexPath.row]];

所以基本上尝试设置每种类型行的背景颜色:

enter image description here

2 个答案:

答案 0 :(得分:6)

您可以设置组的背景颜色,而不是设置行的背景颜色。

答案 1 :(得分:1)

也许在Watch OS 2.0之后,您可以更改行的颜色,但是现在您只能更改组的颜色,如下所示:

[row.rowGroup setBackgroundColor:[UIColor clearColor]];