6

如何在 iOS 7 上更改 UINavigationBar 中文本的颜色?我想要它白色而不是黑色:

在此处输入图像描述

4

1 回答 1

13

如果您对全局更改感到满意,可以将其放入您的 App Delegate 中:

NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], UITextAttributeTextColor, nil];
[[UINavigationBar appearance] setTitleTextAttributes:attributes];
于 2013-09-24T19:11:57.347 回答