Skip to content

Instantly share code, notes, and snippets.

@nezhyborets
Last active February 16, 2017 12:00
Show Gist options
  • Save nezhyborets/933b54f346e991c0f1ae03c6921648c0 to your computer and use it in GitHub Desktop.
Save nezhyborets/933b54f346e991c0f1ae03c6921648c0 to your computer and use it in GitHub Desktop.
Inspectable corner radius for all UIViews
//Inspectable corner radius for all UIViews
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