Setting alpha on UIView sets the alpha on its subviews which should not happen

前端 未结 10 2353
借酒劲吻你
借酒劲吻你 2020-12-13 01:29

According to the documentation for UIVIew @property(nonatomic) CGFloat alpha

The value of this property is a floating-point number in the

10条回答
  •  失恋的感觉
    2020-12-13 02:11

    In swift

    view.backgroundColor = UIColor.whiteColor().colorWithAlphaComponent(0.5)
    

    UPDATED FOR SWIFT 3

    view.backgroundColor = UIColor.white.withAlphaComponent(0.5)
    

提交回复
热议问题