当前位置:  开发笔记 > 编程语言 > 正文

使用UIAppearance更改所有UITableViewCell的文本颜色

如何解决《使用UIAppearance更改所有UITableViewCell的文本颜色》经验,为你挑选了0个好方法。

我无法更改UITableViewCell使用UIAppearance机制的文本颜色.

这是我的代码,其中的注释显示了什么对我有用,什么不对:

UITableViewCell *cell = [UITableViewCell appearance];
cell.backgroundColor = [UIColor blueColor]; // working
cell.textLabel.textColor = [UIColor whiteColor]; // NOT WORKING
cell.detailTextLabel.textColor = [UIColor redColor]; // NOT WORKING

UILabel *cellLabel = [UILabel appearanceWhenContainedIn:[UITableViewCell class], nil];
cellLabel.textColor = [UIColor whiteColor]; // working

如您所见,第二种方式是工作,但我不能为普通文本和详细文本设置不同的颜色.

有什么我做错了吗?

PS在Interface Builder中静态定义东西对我来说不起作用 - 我有可以在运行时动态更改的主题.

推荐阅读
TXCWB_523
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有