iOS Swift - 如何更改表格视图的背景颜色?
Posted
技术标签:
【中文标题】iOS Swift - 如何更改表格视图的背景颜色?【英文标题】:iOS Swift - How to change background color of Table View? 【发布时间】:2015-06-06 06:25:17 【问题描述】:我有一个简单的表格视图,我可以更改单元格的颜色,但是当尝试更改表格视图(背景部分)的颜色时它不起作用...我通过 Storyboard 尝试过...有人可以请帮助
【问题讨论】:
【参考方案1】:首先在viewDidLoad
中设置tableView的背景色如下:
override func viewDidLoad()
super.viewDidLoad()
self.tableView.backgroundColor = UIColor.lightGrayColor()
现在添加这个方法:
override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath)
cell.backgroundColor = UIColor.clearColor()
在 Swift 3 中,使用下面的方法而不是上面的方法:
override func viewDidLoad()
super.viewDidLoad()
self.tableView.backgroundColor = UIColor.lightGray
override func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath)
cell.backgroundColor = UIColor.clear
【讨论】:
太棒了!谢谢!它有效,不知道为什么它不适用于 Storyboard。我只是在那里尝试...感谢您的帮助.. @Homam 我有一个静态表格视图,但它对我不起作用。 @Nicholas 在 viewDidLoad() 方法中添加以下语句:self.tableView.delegate = self 应该编码,'func tableView',而不是'override func tableView'。 我之前尝试过很多答案,但只有这个答案对我有用。先试一试,稍后谢谢!【参考方案2】:func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath)
cell.contentView.backgroundColor = UIColor.yellowColor()
斯威夫特 3
func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath)
cell.contentView.backgroundColor = UIColor.yellow
【讨论】:
【参考方案3】:如果您想通过情节提要实现这一点,请在 tableView 中选择“表格视图单元格”的“内容视图”,然后在属性 Inspector 中转到 View 并更改其颜色,如下所示:
【讨论】:
【参考方案4】:使用此代码更改 tableView 颜色
override func viewDidLoad()
super.viewDidLoad()
// define tableview background color
self.tableView.backgroundColor = UIColor.clearColor()
用于更改 tableView 单元格颜色
cell.backgroundColor = UIColor.clearColor()
【讨论】:
【参考方案5】:我玩游戏有点晚了!但是,以上答案都不适合我,所以只是分享一下我发现的东西,以防其他人跳上这个线程。
注意:我也有自己的自定义单元格类。不确定这是否会影响您的代码!
@IBDesignable class YourViewController: UITableViewController
//IBInspectable and IBDesignable makes the properties accessible in storyboard
@IBInspectable var tableViewBackground: UIColor?
@IBInspectable var cellViewBackground: UIColor?
//in case you want to customize the text color, as well!
@IBInspectable var customTextColor: UIColor?
override func viewDidLoad()
//your code
self.tableView.backgroundColor = tableViewBackground
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
let cell = UITableViewCell()
cell.textLabel?.textColor = customTextColor
cell.backgroundColor = cellViewBackground
return cell
//the rest of your code
查找您的可检查项:
1)。在 tableView 的 viewController 的 Storyboard 菜单中,单击 yourViewController。 viewController 中的第一个下拉菜单。 (第一个下拉菜单将包含您的 tableView 和 cellView。它还可以包含其他好东西,具体取决于您的特定项目)。
2)。在属性检查器中,您将看到一个标题,其中包含您的 viewController 名称和我们在上面定义的 @IBInspectable 属性!
3)。然后,您可以随心所欲地更改它们。
希望这会有所帮助!
【讨论】:
欢迎来到 Stack Overflow 派对。 :)【参考方案6】:你有:
-
单元格背景和
单元格内容视图
将 ContentView 像 Default(透明)一样放在 SB 中,并在 awakeFromNib 中的 Cell 的 Method 中,只需:
self.backgroundColor = UIColor.SomeColor
【讨论】:
以上是关于iOS Swift - 如何更改表格视图的背景颜色?的主要内容,如果未能解决你的问题,请参考以下文章
iOS 14,Swift UI 2 更改 NavigationLink 内选定列表项的背景颜色