var index = buttons.index(of: sender)
label[index!].backgroundColor = UIColor.yellow
如何让其他按钮变白。这意味着我想在[index]
数组中选择所有元素ecxept [UILabel]
。
答案 0 :(得分:0)
你可以在不使用索引的情况下做这样的事情:
for label in labelArray {
if (label != sender) {
// label.setNewColor...
}
}