tableView的footer设置

  1. 不显示或显示高度不正确
  • 不显示
    1. 设置footer的方法有没有调用
    2. tableView是否显示正常
    3. frame有没有给其值
  • 显示高度不对
    1. 是否使用xib设置为footerView,xib设置布局可能会存在高度错乱的问题,xib设置布局需要在viewWillLayoutSubviews内重新布局,不然会出现错乱等一系列问题
  1. 设置背景色
  2. backgroundView这个属性
let backGroundView = UIView(frame:setTableView.bounds)
backGroundView.backgroundColor = UIColor.color(hexString: "EEEEEE") setTableView.backgroundView = backGroundView

你可能感兴趣的:(tableView的footer设置)