美文网首页
自定义tableView的头部视图

自定义tableView的头部视图

作者: 做个有趣的程序员 | 来源:发表于2018-07-11 15:29 被阅读0次

    项目中的tableView列表常常需要自定义头部试图,在iOS 11下设置会有点小问题,解决方式如下:

        //解决iOS 11下设置头部视图高度无效的问题
        func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
            return nil
        }
        // 解决headerView系统默认颜色问题
        func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
            view.tintColor = UIColor(hex6: Color_F7F8FA)
        }
    

    相关文章

      网友评论

          本文标题:自定义tableView的头部视图

          本文链接:https://www.haomeiwen.com/subject/dumhpftx.html