我想在剖面视图中更改页脚的背景颜色。 将背景颜色设置为白色。
我尝试过以下程序,但都没有成功。
在viewDidLoad()
let HEADER_HEIGHT = 100
tableView.tableHeaderView?.frame.size = CGSize(width:
tableView.frame.width, height: CGFloat(HEADER_HEIGHT)).
view.contentView.backgroundColor = UIColor.white in willDisplayHeaderView()
更改了xib文件中的颜色
heightForFooterInSection
override func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
if section > 1 {
return 10
}
return 0
}
请就此问题向我提供意见。
答案 0 :(得分:0)
主要问题是滚动标题 所以,我已经改为Plain to Group。有额外的灰色空间。 我想删除灰色空间。
现在我再次改为Group to Plain。修复额外的灰色空间。 修复Scroll标题。 我在viewDidLoad()中添加了以下行 self.automaticallyAdjustsScrollViewInsets = false