How to loop through all UIButtons in my Swift view?

前端 未结 9 1350
抹茶落季
抹茶落季 2021-02-05 05:22

How would I loop through all UIButtons in my view in Swift? I would want to set all the titles to \"\", but my for-loop in Swift is giving an error.

9条回答
  •  一个人的身影
    2021-02-05 06:16

    Swift 4:

    let subviewButtons = self.view.subviews.filter({$0.isKind(of: UIButton.self)})
    
    for button in subviewButtons {
        //do something        
    }
    

提交回复
热议问题