UIView+Extensions 2.swift 183 B

12345678910
  1. import UIKit
  2. extension UIView {
  3. /// A helper function to add multiple subviews.
  4. func addSubviews(_ subviews: UIView...) {
  5. subviews.forEach {
  6. addSubview($0)
  7. }
  8. }
  9. }