TabBarController 带有黑色背景栏的导航控制器
我已将此代码放置在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后我有了一个解决方案,感谢苹果论坛的 AAA4
在应用程序委托类中实现以下委托方法:
请确保您已设置 UITabBarController 的委托
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