Swift 親Viewの透過設定を子Viewに影響させたくない

Viewの階層

UIView(view)
|
UIView(menuView)
|
UIButton(menuFile)

menuView.alphaで設定

self.menuView.alpha = 0.3

子に影響する

self.menuView.backgroundColorで設定

self.menuView.backgroundColor = UIColor.lightGray.withAlphaComponent(0.3)

Swift

Posted by shi-n