我有UIView
有很多子视图(UILabel,UITextView等)。
如果将主要视图设置为alpha 0.6,则所有子视图都会使用此alpha。
如何分别为主视图设置alpha?
答案 0 :(得分:15)
[view setBackgroundColor:[[UIColor clearColor] colorWithAlphaComponent:0.5]];
//try this.. dont try to set alpha of UIView and also your subviews will not affect
答案 1 :(得分:0)
myView.layer.shouldRasterize = YES
这将使其使用group opacity
,所有内容都应按照您的预期进行合成。