Skip to content

Instantly share code, notes, and snippets.

@GenoZhou
Last active November 5, 2017 15:34
Show Gist options
  • Save GenoZhou/01f789249c48495cd9eda07212007f90 to your computer and use it in GitHub Desktop.
Save GenoZhou/01f789249c48495cd9eda07212007f90 to your computer and use it in GitHub Desktop.
Swift 4 UIView extensions.
extension UIView {
public func addSubviews(_ subviews: [UIView], tAMIC: Bool = false) {
for subview in subviews {
addSubview(subview)
subview.translatesAutoresizingMaskIntoConstraints = false
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment