TabBarController 带有黑色背景栏的导航控制器

发布于 2024-09-01 22:58:29 字数 372 浏览 3 评论 0原文

我已将此代码放置在我的 applicationDidFinishLaunching 方法中,以获得黑色导航栏。

rootTabBarController.navigationController.navigationBar.barStyle = UIBarStyleBlackOpaque;
rootTabBarController.moreNavigationController.navigationBar.barStyle = UIBarStyleBlackOpaque;

它工作正常,但是当用户在编辑模式下重新排列图标时,我会得到一个默认的蓝色导航栏。

任何人都可以帮助我狂热的蓝色导航栏吗?

顺便说一句:非常感谢天才们!

I've placed this code my applicationDidFinishLaunching method, to get a black Navigationbar.

rootTabBarController.navigationController.navigationBar.barStyle = UIBarStyleBlackOpaque;
rootTabBarController.moreNavigationController.navigationBar.barStyle = UIBarStyleBlackOpaque;

its working fine, but when the user rearranges the Icons in the editmode, i'm getting a default blue navigation bar.

Can anyone help me to avid blue navigationbars at all ?

btw: big thanks to the genius crowd!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风吹短裙飘 2024-09-08 22:58:29

最后我有了一个解决方案,感谢苹果论坛的 AAA4

在应用程序委托类中实现以下委托方法:
请确保您已设置 UITabBarController 的委托

- (void)tabBarController:(UITabBarController *)controller willBeginCustomizingViewControllers:(NSArray *)viewControllers {
UIView *editView = [controller.view.subviews objectAtIndex:1];

// change backgroundColor of Edit View
editView.backgroundColor = [UIColor grayColor];



// change color of Nav Bar in Edit View
UINavigationBar *modalNavBar = [editView.subviews objectAtIndex:0];
modalNavBar.tintColor = [UIColor orangeColor];

// change title of Edit View
modalNavBar.topItem.title = @"Edit Tabs";

}

finally i have a solution, thx to AAA4 from apple forum

Implement the following delegate method in application delegate class:
Please ensure you have set delegate of UITabBarController

- (void)tabBarController:(UITabBarController *)controller willBeginCustomizingViewControllers:(NSArray *)viewControllers {
UIView *editView = [controller.view.subviews objectAtIndex:1];

// change backgroundColor of Edit View
editView.backgroundColor = [UIColor grayColor];



// change color of Nav Bar in Edit View
UINavigationBar *modalNavBar = [editView.subviews objectAtIndex:0];
modalNavBar.tintColor = [UIColor orangeColor];

// change title of Edit View
modalNavBar.topItem.title = @"Edit Tabs";

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文