在 UITabBarController 中自定义更多内容 - “配置”
如何修改UITabBarController中“更多”中“配置”的UINavigationBarTintColor?
我在 UITabBarController 中有 10 个 UINavigationController (一切都使用 Interface builder。)
我可以使用 Interface builder 轻松设置所有 UINavigationController 的 UINavigationBar 的色调颜色。
同样我还发现我们可以修改更多的色调颜色,如下所示。
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 中有太多导航控制器,TabBarController 默认允许配置导航控制器的排列。
我的问题是“如何修改配置”屏幕的色调颜色?”。
How to modify the UINavigationBarTintColor for "Configure" in "more" in UITabBarController?
I have 10 UINavigationController within a UITabBarController (everything using Interface builder. )
I can easily set the tint color of all UINavigationController's UINavigationBar using Interface builder.
Similarly I also found that we can modify the More's Tint color as follows.
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.
But TabBarController default allows to configure the arrangement of navigation controllers if we have too many navigation controllers in tabbarcontroller.
My question is "how to modify the tint color of Configure screen?".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
哎呀!我用谷歌搜索&我发现了一些东西。我期待着研究它。
http://sugartin.info/2012/01/23/uitabbarcontroller- more-configure-customization/
哟!我得到了它。
oops ! I googled & I found something. I looking towards study it.
http://sugartin.info/2012/01/23/uitabbarcontroller-more-configure-customization/
Yo ! I got it.