Skip to content

Instantly share code, notes, and snippets.

@calda
Created January 3, 2017 06:32
Show Gist options
  • Save calda/5b4fc9cb242de46e54cea3edbd5359dc to your computer and use it in GitHub Desktop.
Save calda/5b4fc9cb242de46e54cea3edbd5359dc to your computer and use it in GitHub Desktop.
@IBDesignable
class CornerRadiusView : UIView {
@IBInspectable var cornerRadius: CGFloat = -1
override func draw(_ rect: CGRect) {
self.layer.cornerRadius = cornerRadius
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment