gpt4 book ai didi

iphone - 如何填充 UITableViewCell 的背景颜色?

转载 作者:行者123 更新时间:2023-12-03 20:49:22 24 4
gpt4 key购买 nike

如何填充 UITableViewCell 的背景颜色?我尝试了这段代码,但没有成功。

cell.backgroundColor = [UIColor redColor];

最佳答案

尝试为UITableViewCell设置backgroundView:

UIView *bgView = [[UIView alloc] init];
bgView.backgroundColor = [UIColor redColor];
cell.backgroundView = bgView;
// release object
[bgView release];

您可以用同样的方式更改 UITableViewCell 的选择背景 View 。

cell.selectedBackgroundView = bgView;

关于iphone - 如何填充 UITableViewCell 的背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2308457/

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