gpt4 book ai didi

objective-c - Objective-C : How to make background color of UITableView Consistent

转载 作者:可可西里 更新时间:2023-11-01 03:35:55 25 4
gpt4 key购买 nike

我一直在尝试设置我的表格 View 的背景颜色,但遇到了问题

这就是我想要做的。

//Set background color of table view (translucent)
self.tableView.backgroundColor = [UIColor colorWithRed:0.0 green:0.2 blue:0.5 alpha:0.7];

//Set frame for tableview
[self.tableView setFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height-self.picker.frame.size.height)];

设置表格单元格后,我看到表格 View 单元格周围的 alpha 级别不一致(见下面的屏幕截图)

tableView BackgroundColor

有没有办法使背景的颜色/alpha 级别保持一致?(注意:我没有设置背景图片,只有颜色和alpha级别)

谢谢!

郑和

最佳答案

我最近自己遇到了这个问题,我想我找到了解决方案

self.tableView.backgroundColor = [UIColor clearColor];
self.parentViewController.view.backgroundColor = [UIColor colorWithRed:0.0 green:0.2 blue:0.5 alpha:0.7];

试一试,可能需要针对您的具体情况进行一些按摩(看起来半透明蓝色背后也有一些图片)。

关于objective-c - Objective-C : How to make background color of UITableView Consistent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6053160/

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