Advertisement
Guest User

Untitled

a guest
May 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. override func viewDidLoad() {
  2. super.viewDidLoad()
  3.  
  4. // Add profileImage to view and constraint it to center of the screen
  5. view.addSubview(profileImage)
  6. profileImage.centerXAnchor.constraint(equalTo: view.centerXAnchor).isActive = true
  7. profileImage.centerYAnchor.constraint(equalTo: view.centerYAnchor, constant: -100).isActive = true
  8. profileImage.widthAnchor.constraint(equalToConstant: 100).isActive = true
  9. profileImage.heightAnchor.constraint(equalToConstant: 100).isActive = true
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement