Guest User

Untitled

a guest
Oct 21st, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. //constraints
  2. imageView.snp_makeConstraints(closure: { (make) in
  3. make.left.equalTo(customView).offset(15.0)
  4. make.top.equalTo(customView).offset(15.0)
  5. make.size.equalTo(CGSize(width: 90.0, height: 57.0))
  6. })
  7.  
  8. whereLbl.snp_makeConstraints(closure: { (make) in
  9. make.left.equalTo(imageView.snp_right).offset(10.0)
  10. make.top.equalTo(imageView)
  11. make.right.equalTo(customView).offset(-15.0)
  12. })
Add Comment
Please, Sign In to add comment