我正在尝试在UINavigationBar
上设置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
不是RootView时,如何更改UITabBarController
更多?
提前致谢。