我创建了一个如图所示的 tableView。部分和单元格之间有空间。所以空间的颜色就是tableview默认颜色。
为了删除 tableview 上的多余行,我在 tableView?.tableFooterView
中添加了 UIVIew()。
let footerView = UIView()
self.tableView?.tableFooterView = footerView
我想让 UIView 的颜色在图片上的“目标颜色”中相同。
我尝试了下面的方法,但它不起作用。
let footerView = UIView()
footerView.backgroundColor = UIColor.black
footerView.tintColor = UIColor.black
self.tableView?.tableFooterView = footerView
我该怎么办? 谢谢!
尝试为此设置 tableView
的 backgroundColor
。
self.tableView?.backgroundColor = UIColor.white //Or color that you want
关于ios - 改变 tableView?.tableFooterView 的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42027900/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |