美文网首页iOS Developer
设置父视图的透明度不影响子视图的透明度

设置父视图的透明度不影响子视图的透明度

作者: 飞鸟走过 | 来源:发表于2016-12-14 15:04 被阅读118次

    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