Guest User

Untitled

a guest
Nov 22nd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. todayLabel.widthAnchor.constraint(equalToConstant: 50).isActive = true
  2. todayLabel.heightAnchor.constraint(equalToConstant: 100).isActive = true
  3.  
  4. let stackView = UIStackView(arrangedSubviews: [todayDate, todayLabel, contentTextView, readMoreLabel])
  5.  
  6. stackView.axis = .vertical
  7.  
  8. stackView.distribution = .fillProportionally
  9.  
  10. stackView.spacing = 5
  11.  
  12. stackView.anchor(top: viewForImageAndLabel.bottomAnchor, left: safeAreaLayoutGuide.leftAnchor, bottom: shareButton.topAnchor, right: safeAreaLayoutGuide.rightAnchor, paddingTop: 10, paddingLeft: 15, paddingBottom: 10, paddingRight: 15, width: 0, height: 0)
Add Comment
Please, Sign In to add comment