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

后端 未结 8 526
离开以前
离开以前 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

    There is an easy way to change all the navigation bar styles instead of changing each one separately.

    [[UINavigationBar appearance] setBarStyle:UIBarStyleBlack];
    

    Just set this code in one of your initial views. With this, your more navigation controller and the configuration navigation controller (that appears after clicking "Edit" in more navigation controller) get a different style.

    Like this you can change its color to a different one or change the background image.

    Hope this helps.

提交回复
热议问题