更改UINavigationBar"提示"的textColor?

avo*_*ade 4 iphone cocoa-touch colors uinavigationbar

这样做的任何(支持)方式?当使用"比X更暗"的tintColor时,它通常会在某些时刻切换为白色,但我们似乎只是处于我们的方案的边缘.

Fel*_*lix 11

这在iOS5中是可能的:

[[UINavigationBar appearance] setTitleTextAttributes:
      [NSDictionary dictionaryWithObjectsAndKeys:
       [UIColor whiteColor], UITextAttributeTextColor, nil]];
Run Code Online (Sandbox Code Playgroud)

  • 当您使用`self.navigationItem.prompt = @"My Prompt"设置文本时,它将具有自定义颜色,我已对其进行了测试. (3认同)