设置父视图的透明度不影响子视图的透明度
2016-12-14 本文已影响118人
飞鸟走过
self.view.backgroundColor = [UIColor whiteColor];
self.view.alpha = 0.5;
这种写法,父视图的透明度会影响到它上面的子视图。
self.view.backgroundColor = [[UIColor whiteColor] colorWithAlphaComponent:0.5];
这种写法,父视图的透明度不会影响到它上面的子视图。