时间:2017-11-10 17:32:34

标签: ios swift uitableview

我想在剖面视图中更改页脚的背景颜色。 将背景颜色设置为白色。

enter image description here

我尝试过以下程序,但都没有成功。

  1. viewDidLoad()

    中添加了代码
    let HEADER_HEIGHT = 100
    tableView.tableHeaderView?.frame.size = CGSize(width:
    tableView.frame.width, height: CGFloat(HEADER_HEIGHT)).
    
  2. view.contentView.backgroundColor = UIColor.white in willDisplayHeaderView()

  3. 更改了xib文件中的颜色

  4. heightForFooterInSection

    override func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
        if section > 1 {
            return 10
        }
        return 0
    }
    
  5. 请就此问题向我提供意见。

1 个答案:

答案 0 :(得分:0)

主要问题是滚动标题 所以,我已经改为Plain to Group。有额外的灰色空间。 我想删除灰色空间。

现在我再次改为Group to Plain。修复额外的灰色空间。 修复Scroll标题。 我在viewDidLoad()中添加了以下行   self.automaticallyAdjustsScrollViewInsets = false