Swift-WatchKit:如何设置手表表上所选行的背景颜色?提前感谢
将背景设置为组
@IBOutlet weak var cellBackGroup: WKInterfaceGroup!
然后设置
row.cellBackGroup.setBackgroundColor(UIColor.red)
你可以保留一个可变
var selectedIndex = 0
并实现委托方法
func table(_ table: WKInterfaceTable, didSelectRowAt rowIndex: Int) {
selectedIndex = rowIndex
....
}