Skip to content

Instantly share code, notes, and snippets.

@quangtqag
Created February 26, 2019 02:01
Show Gist options
  • Save quangtqag/204e2927009e03259aab7be41aed0655 to your computer and use it in GitHub Desktop.
Save quangtqag/204e2927009e03259aab7be41aed0655 to your computer and use it in GitHub Desktop.
class PushButton: UIButton {
override func draw(_ rect: CGRect) {
let path = UIBezierPath(ovalIn: rect)
UIColor.green.setFill()
path.fill()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment