tags:

views:

1102

answers:

3
+1  A: 

Hi Mladen

Try to set the Background color with:

[self.label setBackgroundColor: [UIColor colorWithWhite: 1.0f alpha: 0.0f]];

or set the Alpha value to 0

[self.label setAlpha: 0.0f];

Hope that does the trick.

Dshutsi
An UIColor instance already exists to do that: [self.label setBackgroundColor:[UIColor clearColor]];
Rémy BOURGOIN
+5  A: 

Or alternatively:

self.label.backgroundColor = [UIColor clearColor];
drewh
A: 
Mladen