gpt4 book ai didi

iphone - 在 UITabBarController 中自定义更多内容 - "configure"

转载 作者:行者123 更新时间:2023-12-03 20:21:13 25 4
gpt4 key购买 nike

如何修改UITabBarController中“更多”中“配置”的UINavigationBarTintColor?

我在 UITabBarController 中有 10 个 UINavigationController (一切都使用 Interface builder。)

我可以使用界面生成器轻松设置所有 UINavigationController 的 UINavigationBar 的色调颜色。

同样我还发现我们可以修改More的Tint颜色,如下所示。

tBarDashboard.moreNavigationController.navigationBar.tintColor=
[UIColor colorWithRed:30/255.0 green:103/255.0 blue:7/255.0 alpha:1.0];
// here tbarDashboard is my UITabBarController.

但是如果 tabbarcontroller 中有太多导航 Controller ,TabBarController 默认允许配置导航 Controller 的排列。

我的问题是“如何修改配置”屏幕的色调颜色?”。

最佳答案

哎呀!我用谷歌搜索并发现了一些东西。我期待着研究它。

http://sugartin.info/2012/01/23/uitabbarcontroller-more-configure-customization/

哟!我明白了。

- (void)tabBarController:(UITabBarController *)controller willBeginCustomizingViewControllers:(NSArray *)viewControllers {
UIView *editView = [controller.view.subviews objectAtIndex:1];
UINavigationBar *modalNavBar = [editView.subviews objectAtIndex:0];
modalNavBar.tintColor = [UIColor orangeColor];
}

关于iphone - 在 UITabBarController 中自定义更多内容 - "configure",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4436566/

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