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 に答える