gpt4 book ai didi

uilabel - 为 iPhone 应用程序的 UILabel 设置透明背景

转载 作者:行者123 更新时间:2023-12-02 05:48:59 26 4
gpt4 key购买 nike

我在 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 的背景设置为透明。

但是它不起作用。谁能告诉我我在这里缺少什么

谢谢

桑迪普

最佳答案

更改以下行:

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

对此:

label.backgroundColor = [UIColor clearColor];

关于uilabel - 为 iPhone 应用程序的 UILabel 设置透明背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2271144/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com