Swift Alpha颜色

时间:2017-05-15 18:09:41

标签: ios swift xcode

我试图在图像上方放置带有标签的视图,并在我的视图中应用深色透明色,但Xcode将alpha应用于父视图和子标签,如何防止标签继承alpha的颜色家长观点?我尝试了几种方法:/

enter image description here

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

而不是设置UIView's alpha,请设置它的backgroundColor&#39}像

一样
view.backgroundColor = UIColor(red: 250 / 255, green: 250 / 255, blue: 250 / 255, alpha: 1) //set alpha

你无法阻止继承。