self.view.backgroundColor = [UIColor whiteColor];
self.view.alpha = 0.5;
这种写法,父视图的透明度会影响到它上面的子视图。
self.view.backgroundColor = [[UIColor whiteColor] colorWithAlphaComponent:0.5];
这种写法,父视图的透明度不会影响到它上面的子视图。
self.view.backgroundColor = [UIColor whiteColor];
self.view.alpha = 0.5;
这种写法,父视图的透明度会影响到它上面的子视图。
self.view.backgroundColor = [[UIColor whiteColor] colorWithAlphaComponent:0.5];
这种写法,父视图的透明度不会影响到它上面的子视图。
本文标题:设置父视图的透明度不影响子视图的透明度
本文链接:https://www.haomeiwen.com/subject/gbmimttx.html
网友评论