Skip to content

Instantly share code, notes, and snippets.

@imjhk03
Created December 13, 2020 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imjhk03/b6b454af22b098390d45cf2aeab507a7 to your computer and use it in GitHub Desktop.
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