Skip to content

Instantly share code, notes, and snippets.

@nathangitter
Created October 29, 2017 14:50
Show Gist options
  • Save nathangitter/2418bc46f7c0dfd0a21757b2e1b39735 to your computer and use it in GitHub Desktop.
Save nathangitter/2418bc46f7c0dfd0a21757b2e1b39735 to your computer and use it in GitHub Desktop.
@IBOutlet weak var myCustomView: UIView! {
didSet {
view.backgroundColor = UIColor.blue
view.layer.cornerRadius = myCustomView.bounds.width / 2
}
}
@vikrant-Ios
Copy link

@IBOutlet weak var myCustomView: UIView! {
didSet {
myCustomView.backgroundColor = UIColor.blue
myCustomView.layer.cornerRadius = myCustomView.bounds.width / 2
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment