我正在尝试设置UINavigationBar
a 上的颜色UITabBarController
。现在我知道这可以通过以下方式完成:
UINavigationController* more = self.tabBarController.moreNavigationController;
more.navigationBar.tintColor = [UIColor colorWithRed:0.0 green:0.0 blue:1.0 alpha:1.0];
但是我对此事的看法是,UITabBarController 不是 RootViewController,而是另一个UINavigationController
,所以这对我来说并不像我想要的那样工作。
navBar
当UITabBarController
不是 RootView时,如何更改更多?
提前致谢。