方法一:
在APPDelegate中设置:
设置navigationBar的字体的样式:
NSDictionary*navbarTitleTextAttributes =@{NSForegroundColorAttributeName:[UIColor whiteColor]};
[[UINavigationBar appearance] setTitleTextAttributes:navbarTitleTextAttributes];
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
设置navigationBar的背景颜色
[[UINavigationBar appearance] setBarTintColor:[UIColor navigationbarColor]];
方法二:
在父类BasicViewController中设置
方法三:
创建一个NavigationController中设置