标签: ios objective-c uiview uilabel
我想淡化UILabel的背景颜色。例如:从深蓝色到浅蓝色(只是静态显示)。我该如何实施呢?
答案 0 :(得分:1)
self.myLabel.backgroundColor = [[UIColor blueColor] colorWithAlphaComponet:0.3];