Skip to content

Instantly share code, notes, and snippets.

@vialyx
Last active October 7, 2018 16:25
Show Gist options
  • Save vialyx/5ee9fda431ea6e1b35ca908e56b967c2 to your computer and use it in GitHub Desktop.
Save vialyx/5ee9fda431ea6e1b35ca908e56b967c2 to your computer and use it in GitHub Desktop.
extension UIView {
var cornerRadius: CGFloat {
set {
layer.cornerRadius = newValue
}
get {
return layer.cornerRadius
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment