wift - viewの影
swiftでviewに影をつける基本の四つのプロパティ
simple.swift
testView.layer.shadowOffset = CGSize(width: 0.0, height: 2.0)
testView.layer.shadowColor = UIColor.black.cgColor
testView.layer.shadowOpacity = 0.6
testView.layer.shadowRadius = 4
影の方向 shadowOffset
simple.swift
//影は下にある
testView.layer.shadowOffset = CGSize(width: 0.0, height: 30.0)
//影は上にある
testView.layer.shadowOffset = CGSize(width: 0.0, height: -30.0)
simple.swift
//影は右にある
testView.layer.shadowOffset = CGSize(width: 30.0, height: 0.0)
//影は左にある
testView.layer.shadowOffset = CGSize(width: -30.0, height: 0.0)
影の色 shadowColor
simple.swift
testView.layer.shadowColor = UIColor.blue.cgColor
影の透明度 shadowOpacity
simple.swift
testView.layer.shadowOpacity = 0.2
影の幅 shadowRadius
simple.swift
testView.layer.shadowRadius = 30.0
終わりに
わかりやすいようにちょっと大げさな数値を入れましたので、自分のニーズで調整してください。
Author And Source
この問題について(wift - viewの影), 我々は、より多くの情報をここで見つけました https://qiita.com/Wesley-chu/items/24f5a3a8b9b679822206著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .