淡化 UILabel 的背景颜色? (静态展示)
Fade the background color of UILabel ? (static display)
我想淡化 UILabel 的背景颜色。例如:从深蓝色到浅蓝色(只是静态显示)。我该如何实施?
你是说 alpha 吗?如果是self.myLabel.backgroundColor = [[UIColor blueColor] colorWithAlphaComponet:0.3];
。您也可以在 Storyboard 的 Attributes Inspector 中执行此操作。
我想淡化 UILabel 的背景颜色。例如:从深蓝色到浅蓝色(只是静态显示)。我该如何实施?
你是说 alpha 吗?如果是self.myLabel.backgroundColor = [[UIColor blueColor] colorWithAlphaComponet:0.3];
。您也可以在 Storyboard 的 Attributes Inspector 中执行此操作。