Skip to content

Instantly share code, notes, and snippets.

@sTinGe
Last active December 20, 2019 07:24
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 sTinGe/7310267119ebc73bffc06634eae75181 to your computer and use it in GitHub Desktop.
Save sTinGe/7310267119ebc73bffc06634eae75181 to your computer and use it in GitHub Desktop.
// UIViewController
let constraints = [
view.centerXAnchor.constraint(equalTo: superview.centerXAnchor),
view.centerYAnchor.constraint(equalTo: superview.centerYAnchor),
view.widthAnchor.constraint(equalTo: superview.widthAnchor)
view.heightAnchor.constraint(equalTo: superview.heightAnchor),
]
NSLayoutConstraint.activate(constraints)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment