gpt4 book ai didi

iphone - 如何为分组 TableView 设置背景图像?

转载 作者:行者123 更新时间:2023-12-03 18:29:16 24 4
gpt4 key购买 nike

我见过一些 iPhone 应用程序使用自定义图像作为分组 UITableView 的背景,而不是标准的灰线。

这是如何实现的?

最佳答案

这对我有用(一旦我弄清楚了,就相当简单了;)

1) 在应用程序委托(delegate)中添加一个 View ,并将其设为窗口的 subview :

UIView *bgView = [[UIView alloc]initWithFrame:window.frame];

bgView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"screenBG.png"]];
[window addSubview:bgView];
[bgView release];

2) 在每个 View Controller .m 文件上的 ViewDidLoad 下,将该特定 View 的背景颜色设置为透明(以便上面创建的其他 bgView 将显示出来):

self.view.backgroundColor = [UIColor clearColor];

就我而言,步骤 2 中的 View Controller 是一个 tableviewcontroller。看起来很棒。

顺便说一句,在每个 View Controller 中执行以下操作效果不佳:

self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"screenBG.png"]];

因此请按照上面的步骤 1 和 2 进行操作。

希望这对您有所帮助,骨头

关于iphone - 如何为分组 TableView 设置背景图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1370849/

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