如何循环按钮

时间:2018-08-21 03:54:50

标签: ios swift loops

我希望能够使用循环来告知要隐藏的一组UIButton。通常我会写:

  a.ishidden = true
  b.ishidden = true
  a.ishidden = true

我正在寻找一种写得更快的方式。

2 个答案:

答案 0 :(得分:0)

创建按钮 outletcollections ,并使用for循环,即可实现

for i in buttoncollections {i.isHidden = true}

答案 1 :(得分:0)

一个衬里,美观又简单

select from blah where created_at between date1 AND date2 and (some=condition or some=other_condition).