项目中的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)
}
网友评论