Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 iOS 7 上更改 UINavigationBar 中文本的颜色?我想要它白色而不是黑色:
如果您对全局更改感到满意,可以将其放入您的 App Delegate 中:
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], UITextAttributeTextColor, nil]; [[UINavigationBar appearance] setTitleTextAttributes:attributes];