在AppDelegate中将UINavigationBar颜色改为黑色,标题改为白色
[[UINavigationBar appearance] setBarTintColor:[UIColor blackColor]];
[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor whiteColor]}];
本文介绍如何在AppDelegate中通过代码设置UINavigationBar的颜色为黑色,并将标题颜色设为白色。
在AppDelegate中将UINavigationBar颜色改为黑色,标题改为白色
[[UINavigationBar appearance] setBarTintColor:[UIColor blackColor]];
[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor whiteColor]}];

被折叠的 条评论
为什么被折叠?