Skip to content

Instantly share code, notes, and snippets.

@zakbarlow1995
Last active July 24, 2019 09:30
Show Gist options
  • Save zakbarlow1995/88aab25145f705fc57648c2b2f1393a7 to your computer and use it in GitHub Desktop.
Save zakbarlow1995/88aab25145f705fc57648c2b2f1393a7 to your computer and use it in GitHub Desktop.
UIView extension to add views variadically to the view-hierarchy
import UIKit
extension UIView {
func addSubviews(_ views: UIView...) {
views.forEach { addSubview($0) }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment