gpt4 book ai didi

ios - 不推荐使用UItableViewCell setTextColor

转载 作者:行者123 更新时间:2023-12-01 18:09:32 25 4
gpt4 key购买 nike

我正在尝试使用UITableViewCell作为我的应用程序中的主题来更改appearanceWhenContainedInInstancesOfClasses中的文本颜色。

这是代码行:

[[UITableViewCell appearanceWhenContainedInInstancesOfClasses:@[[SearchTableView class]]] setTextColor:snackOrangeColor];

这可行。但是setTextColor在iOS 3.0中已被弃用。因此,我不能使用它。我还没有找到合适的解决方案。

我的问题是,应该使用什么来代替setTextColor更改UITableViewCell中的文本颜色?

感谢您的所有帮助。

最佳答案

尝试更改单元格的textLabel的textColor。

 cell.textLabel.textColor = [UIColor someColor];

要么

创建一个自定义UITableViewCell
[[UILabel appearanceWhenContainedIn:[CustomUITableViewCell class], nil] 
setTextColor:[UIColor someColor]];

我认为没有其他替代方法。我建议在常量中创建颜色,然后在代码中调用常量。

关于ios - 不推荐使用UItableViewCell setTextColor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34457214/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com