Skip to content

Instantly share code, notes, and snippets.

@milanpanchal
Last active October 15, 2020 19:39
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 milanpanchal/63ce03ee249dae0463efee73f00d89cb to your computer and use it in GitHub Desktop.
Save milanpanchal/63ce03ee249dae0463efee73f00d89cb to your computer and use it in GitHub Desktop.
[iOS Blog] UIView Shadow Example
private func setupShadowView() {
shadowView.layer.cornerRadius = 12
shadowView.layer.shadowOffset = CGSize(width: 10, height: 10)
shadowView.layer.shadowOpacity = 0.5
shadowView.layer.shadowRadius = 10
shadowView.layer.shadowColor = UIColor.black.cgColor
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment