web-dev-qa-db-ja.com

iPhoneアプリケーションのUILabelに透明な背景を設定する

UITableViewにUILabelがあります。これが私が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;    

私の意図は、セルとUILabelの背景を透明に設定することでした。

しかし、それは機能していません。誰かが私がここで欠けているものを教えてもらえますか

ありがとう

Sandeep

21
user270520

次の行を変更します。

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

これに:

label.backgroundColor = [UIColor clearColor];
74
oden

Xamarin.iOSを使用している場合は、明らかに次のようになります。

UILabel myLabel = new UILabel();
myLabel.Text = "Hello world!";
myLabel.BackgroundColor = UIColor.Clear;
2
Miros
[label setBackGroundColor:[UIColor clearColor]];

ラベルのclearBackGroundColorを設定するには