美文网首页
Setting the background color on

Setting the background color on

作者: 月夜芳华 | 来源:发表于2020-04-24 10:37 被阅读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;

    正确写法

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

    相关文章

      网友评论

          本文标题:Setting the background color on

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