How to add a border all labels to an array of labels in an outlet collection in Swift?

155 Views Asked by At
class ViewController: UIViewController {

    @IBOutlet var labels: [UILabel]!


    override func viewDidLoad() {
        super.viewDidLoad()


        labels[0].layer.borderWidth = 1
        labels[0].layer.borderColor = UIColor.black.cgColor
    }
}
1

There are 1 best solutions below

0
On BEST ANSWER

You can loop through the labels and set the border as below,

labels.forEach { (label) in
    label.layer.borderColor = UIColor.black.cgColor
    label.layer.borderWidth = 1.0
}