Setting the background color on
2020-04-24 本文已影响0人
月夜芳华
最近公司着手修改项目的警告信息。因此就遇到了以下警公告信息:
Setting the background color on UITableViewHeaderFooterView has been deprecated. Please set a custom UIView with your desired background color to the backgroundView property instead.
原因是直接设置headerView背景颜色时(如下图):
原始写法这样写是老的写法苹果已经摒弃了。需要用新的方法去修改:
header.backgroundView.backgroundColor = CommonTableviewHeaderBgColor;
正确写法这样就可以完美解决报警信息。