gpt4 book ai didi

iphone - 自定义表格 View 背景的 UITableViewCell 颜色问题

转载 作者:行者123 更新时间:2023-12-03 18:47:11 26 4
gpt4 key购买 nike

我有一个 UITableView,其自定义背景图像设置如下:

self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"mybg.png"]];

背景看起来不错,但我的 UITableViewCells(默认单元格,不是自定义的)有某种奇怪的色调,并且包含“新项目”文本的 UILabel 似乎也有某种背景。我怎样才能删除这个?我已经尝试过了:

cell.backgroundColor = [UIColor clearColor];
cell.textLabel.backgroundColor = [UIColor clearColor];

谢谢

alt text http://cl.ly/Cg5/content

最佳答案

我认为,简单地将图像直接添加到表格 View 的背景颜色中会产生令人讨厌的副作用。

尝试将图像添加到 View 的背景颜色:

[[self view] setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"mybg.png"]]];

然后将表格 View 的背景颜色设置为清晰:

[[self tableView] setBackgroundColor:[UIColor clearColor]];

希望这会有所帮助!

关于iphone - 自定义表格 View 背景的 UITableViewCell 颜色问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2568508/

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