Skip to content

Instantly share code, notes, and snippets.

@imjhk03
Created December 13, 2020 15:58
Show Gist options
  • Select an option

  • Save imjhk03/b6b454af22b098390d45cf2aeab507a7 to your computer and use it in GitHub Desktop.

Select an option

Save imjhk03/b6b454af22b098390d45cf2aeab507a7 to your computer and use it in GitHub Desktop.
import UIKit
extension UIView {
func addSubviews(_ views: UIView...) {
for view in views { addSubview(view) }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment