Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. let circle = UIView(
  2. frame: CGRect(x: 0.0, y: 0.0, width: 64.0, height: 64.0)
  3. )
  4.  
  5. circle.center = containerView.center
  6. circle.backgroundColor = UIColor.blue
  7. circle.layer.borderColor = UIColor.blue.cgColor
  8. circle.layer.cornerRadius = 32.0
  9. circle.layer.borderWidth = 2.0
  10. containerView.addSubview(circle)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement