Skip to content

Instantly share code, notes, and snippets.

@Athosone
Created January 3, 2016 17:40
Show Gist options
  • Save Athosone/6b4360b3092dc7691f15 to your computer and use it in GitHub Desktop.
Save Athosone/6b4360b3092dc7691f15 to your computer and use it in GitHub Desktop.
extension UIView {
@IBInspectable var cornerRadius: CGFloat {
get {
return layer.cornerRadius
}
set {
layer.cornerRadius = newValue
layer.masksToBounds = newValue > 0
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment