Last active
October 7, 2018 16:25
-
-
Save vialyx/5ee9fda431ea6e1b35ca908e56b967c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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