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;

正确写法

这样就可以完美解决报警信息。

上一篇下一篇

猜你喜欢

热点阅读