Skip to content

Instantly share code, notes, and snippets.

@KrauserHuang
Created March 16, 2022 07:29
Show Gist options
  • Save KrauserHuang/e2cf806ef5db37c965f8d6601b6c7b9f to your computer and use it in GitHub Desktop.
Save KrauserHuang/e2cf806ef5db37c965f8d6601b6c7b9f to your computer and use it in GitHub Desktop.
borderView.layer.cornerRadius = 10
borderView.layer.masksToBounds = true
shadowView.backgroundColor = .clear //與cornerRadius擇一
shadowView.layer.cornerRadius = 10 //與backgroundColor擇一
shadowView.layer.masksToBounds = false
shadowView.layer.shadowColor = UIColor.black.cgColor
shadowView.layer.shadowRadius = 4
shadowView.layer.shadowOpacity = 0.5
shadowView.layer.shadowOffset = CGSize(width: 2, height: 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment