Guest User

Untitled

a guest
Jan 17th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. override func draw(_ rect: CGRect) {
  2. if let ctx = UIGraphicsGetCurrentContext() {
  3. ctx.setFillColor(UIColor.blue.cgColor)
  4. ctx.addEllipse(in: CGRect(x: 0, y: 0, width: 100, height: 100))
  5. ctx.fillPath()
  6.  
  7. UIGraphicsEndImageContext()
  8. }
  9. }
Add Comment
Please, Sign In to add comment