gpt4 book ai didi

objective-c - 使单元格的背景透明,而不使文本也透明

转载 作者:行者123 更新时间:2023-12-01 17:45:41 25 4
gpt4 key购买 nike

我有一个 UITableView,我想要一个透明的背景,但如果不使单元格中的文本也透明,我似乎无法做到这一点。这就是我所拥有的。

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}

NSString *labelString = @"Hello";

[cell setBackgroundColor:[UIColor darkGrayColor]];
cell.alpha 0.2f;

cell.textLabel.textcolor = [UIColor whiteColor];
cell.textLabel.text = labelString;

我尝试了其他几件事,例如设置 contentView 的背景颜色和 alpha,以及 backgroundView 的颜色和 alpha,似乎没有任何效果。

最佳答案

而不是设置cell.alpha,

cell.backgroundColor = [UIColor clearColor];

您可能还需要设置表格 View 背景。

关于objective-c - 使单元格的背景透明,而不使文本也透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6810705/

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