Guest User

Untitled

a guest
Jul 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. self.infosView.translatesAutoresizingMaskIntoConstraints = false
  2. self.infosView.topAnchor.constraint(equalTo: self.view.topAnchor, constant: 0).isActive = true
  3. self.infosView.leftAnchor.constraint(equalTo: self.view.leftAnchor, constant: -500).isActive = true
  4. self.infosView.widthAnchor.constraint(equalTo: self.view.widthAnchor, multiplier: 0, constant: 500).isActive = true
  5. self.infosView.heightAnchor.constraint(equalTo: self.view.heightAnchor, multiplier: 0, constant: (NSScreen.main?.frame.height)!).isActive = true
Add Comment
Please, Sign In to add comment