如何解决不支持更改 UITableViewHeaderFooterView 的背景颜色改用背景视图配置
我使用xib自定义headerView并将默认背景颜色设置为这个headerView,我总是收到这个警告。如何解决?谢谢。
这些属性对我不起作用。
解决方法
不太确定,我已经尝试过你的意思是什么,从你发布的代码片段中可以清楚地看出你还没有,你可以做这个 tableView 委托或在你的 headerView 本身的 awakeFromNib
中
guard let header =
detailTableView.dequeueReusableHeaderFooterView(withIdentifier: "DetailListHeaderView") as? DetailListHeaderView else { fatalError("could not create headerView") }
let backgroundView = UIView(frame: header.bounds)
backgroundView.backgroundColor = UIColor(white: 0.5,alpha: 0.5)
header.backgroundView = backgroundView
//other codes of yours
return header
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。