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];