我怎样才能在UILabel和UIButton集合中引用indexPath?

时间:2018-03-25 09:18:07

标签: arrays uilabel

var index = buttons.index(of: sender)

label[index!].backgroundColor = UIColor.yellow

如何让其他按钮变白。这意味着我想在[index]数组中选择所有元素ecxept [UILabel]

1 个答案:

答案 0 :(得分:0)

你可以在不使用索引的情况下做这样的事情:

for label in labelArray {
        if (label != sender) {
            // label.setNewColor...
        }
    }