user270520
user270520

Reputation: 211

setting transparent background for UILabel for iphone application

I have a UILabel in UITableView. Here is the code i have written in cellForRowAtIndexPath

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectMake(30.0, 5.0, 250.0, 35.0) reuseIdentifier:CellIdentifier] autorelease];
    }   


    CGRect rect = CGRectMake(30.0, 5.0, 250.0, 35.0);
    UILabel *label = [[UILabel alloc] initWithFrame:rect];

    label.opaque = NO;  
    label.font = [UIFont systemFontOfSize:14];
    label.numberOfLines = 2;
    label.textAlignment = UITextAlignmentCenter;            
    label.textColor = [UIColor darkGrayColor];
    label.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.0];
    [label setText:@"Test Message"];    

    [cell addSubview:label];
    [label release];
    cell.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.0];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;    

My intention was to set the background of cell and UILabel as transparent.

But it is not working. can any one tell me what i am missing here

Thanks

Sandeep

Upvotes: 21

Views: 31273

Answers (3)

Dinesh Reddy Chennuru
Dinesh Reddy Chennuru

Reputation: 491

[label setBackGroundColor:[UIColor clearColor]];

To set the clearBackGround Color for a label

Upvotes: 1

Miros
Miros

Reputation: 567

For those using Xamarin.iOS it's obviously:

UILabel myLabel = new UILabel();
myLabel.Text = "Hello world!";
myLabel.BackgroundColor = UIColor.Clear;

Upvotes: 2

oden
oden

Reputation: 3651

Change the following line:

label.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.0];

to this:

label.backgroundColor = [UIColor clearColor];

Upvotes: 74

Related Questions