Sure, this can be done like this...
Code:
//pretend the name of you label is myLabel
myLabel.backgroundColor = [UIColor blackColor];
--or--
myLabel.backgroundColor = [UIColor clearColor];
Pick either the top line or the bottom or any other color you want. Hope that helped.
Nitrex88