Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法让我可以设置 UILabel 的 alpha,但它不会淡出 UILabel 的文本?仅仅意味着背景?
由于文本是标签的一部分,如果您为标签设置 alpha,则文本会适当地淡化。您想要的是backgroundColor使用适当的 alpha 设置 a:
backgroundColor
myLabel.backgroundColor = [UIColor colorWithRed:1 green:0 blue:0 alpha:0.5];
您可能必须创建一个背景视图(UIView就足够了),并将其UILabel放在顶部(不是作为子视图,因为背景视图的 alpha 值会影响其所有子视图)
UIView
UILabel