Guest User

Untitled

a guest
Jan 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var containerViewBottomAnchor: NSLayoutConstraint?
  2.  
  3. func setupToolBar() {
  4. ...
  5. containerViewBottomAnchor = containerView.bottomAnchor.constraint(equalTo: view.bottomAnchor)
  6. containerViewBottomAnchor?.isActive = true
  7.  
  8.  
  9. }
  10.  
  11. func modify(){
  12. containerViewBottomAnchor?.constant = -500
  13. }
  14.  
  15. containerView.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: -500).isActive = true
Add Comment
Please, Sign In to add comment