美文网首页
设置父控件的alpha 不影响子控件

设置父控件的alpha 不影响子控件

作者: 码农淏 | 来源:发表于2016-12-03 16:21 被阅读13次
    UIView* superView=[[UiView alloc] init];
    UIView* subView=[[UIView alloc] init];
    [superView addSubView:subView];
    
    //设置父控件的Alpha 而不影响子控件
    [superView setBackgroundColor:[[UIColor blackColor] colorWithAlphaComponent:0.5f];
    

    相关文章

      网友评论

          本文标题:设置父控件的alpha 不影响子控件

          本文链接:https://www.haomeiwen.com/subject/kbscmttx.html