UIViewに影をつける
UIViewに影をつける方法です。 オレンジ色のUIView の周りに影をつけています。 影があると浮き上がって見えるの不思議ですね。
This file contains 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
import UIKit | |
class ViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
view.backgroundColor = .white | |
let shadowView = UIView() | |
shadowView.frame.size = CGSize(width: 100, height: 100) | |
shadowView.center = view.center | |
shadowView.backgroundColor = .orange | |
shadowView.layer.shadowOpacity = 0.3 | |
shadowView.layer.shadowOffset = CGSize(width: 10, height: 10) | |
view.addSubview(shadowView) | |
} | |
} |