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

Watchkit Table Row Background Color programatically

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

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

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

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

设置组的背景色,而不是设置行的背景色。

也许在 Watch OS 2.0 之后,您可以更改行的颜色,但现在您只能像这样更改组的颜色:

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