Guest User

Untitled

a guest
Oct 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. let anyView = UIView()
  2. view.addSubview(anyView)
  3.  
  4. anyView.translatesAutoresizingMaskIntoConstraints = false
  5. anyView.widthAnchor.constraint(equalTo: view.widthAnchor).isActive = true
  6. anyView.heightAnchor.constraint(equalTo: view.heightAnchor).isActive = true
  7. anyView.centerXAnchor.constraint(equalTo: self.view.centerXAnchor).isActive = true
  8. anyView.centerYAnchor.constraint(equalTo: self.view.centerYAnchor).isActive = true
Add Comment
Please, Sign In to add comment