Skip to content

Instantly share code, notes, and snippets.

@fozoglu
Created January 24, 2017 08:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fozoglu/7e291b7e408e4f6eaf8b1a2eba5c3fc3 to your computer and use it in GitHub Desktop.
Save fozoglu/7e291b7e408e4f6eaf8b1a2eba5c3fc3 to your computer and use it in GitHub Desktop.
borderUIColor - swift 3 example
extension CALayer {
var borderUIColor: UIColor {
set {
self.borderColor = newValue.cgColor
}
get {
return UIColor(cgColor: self.borderColor!)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment