gpt4 book ai didi

iphone - 更改 MoreNavigationController 中的文本颜色

转载 作者:行者123 更新时间:2023-12-03 18:30:29 25 4
gpt4 key购买 nike

我希望我现在没有重复任何线程,但我找不到我的问题的良好答案。我有五个以上的选项卡,因此会自动出现更多选项卡。我已经设法更改了它的一些设置,例如标题、背景和导航栏的样式等。我的问题是我不知道如何更改更多表格 View 中的文本颜色。应用程序的其余部分在所有表格 View 中都有黑色背景,白色文本。

使用代码行:tabBarController.moreNavigationController.topViewController.view.backgroundColor = [UIColor blackColor];

我得到黑色背景。关于如何更改文本颜色有什么想法吗?

最佳答案

试试这个:

UITableView *view = (UITableView*)self.tabBarController.moreNavigationController.topViewController.view;
if ([[view subviews] count]) {
for (UITableViewCell *cell in [view visibleCells]) {
cell.textLabel.textColor = [UIColor redColor];
}
}

关于iphone - 更改 MoreNavigationController 中的文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4933756/

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