I have one UILabelwhose opacity has been changed to blank with [UIColor clearColor] Now I want to change the opacity of the text inside the label to the full possible level. How to do it?
UILabel
[UIColor clearColor]
Use the following code to change the opacity of the text. UILabel
[headerLabel setAlpha:0.5];
Happy coding .. :)