Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // Earth Image Setup
  2. view.addSubview(earthImageView)
  3. earthImageView.bottomAnchor.constraint(equalTo: loginTextViewTitle.topAnchor, constant: -standardSpacer).isActive = true
  4. earthImageView.widthAnchor.constraint(equalToConstant: 500).isActive = true
  5. earthImageView.heightAnchor.constraint(equalToConstant: 500).isActive = true
  6. earthImageView.centerXAnchor.constraint(equalTo: view.centerXAnchor).isActive = true
  7.  
  8. // Value of earthImageViewHeight is 276. Why isn't it 500?
  9. let earthImageViewHeight = earthImageView.frame.size.height
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement