How to set the Navigation Bar Color of the Tab Bar Configure Menu

后端 未结 8 492
离开以前
离开以前 2021-02-03 21:39

removed dead ImageShack link

As you can see the view I need to change is the provided view to customize the tabbar order. I want to change the color of the navi

8条回答
  •  抹茶落季
    2021-02-03 21:51

    I think what you are looking for is this (to do when you create your navigation controller, typically in your app delegate):

    UINavigationController *navigationController;
    ...
    navigationController.navigationBar.tintColor = [UIColor blackColor];
    

提交回复
热议问题