[[UIBarButtonItem appearance] setTitleTextAttributes:titleAttributes forState:UIControlStateNormal];
[[UIBarButtonItem appearance] setTitleTextAttributes:titleAttributes forState:UIControlStateSelected];
[[UIBarButtonItem appearance] setTitleTextAttributes:titleAttributes forState:UIControlStateDisabled];
これらの関数を使用して、ナビゲーション バー アイテムのフォントと色を変更します。iOS 7 より前では問題なく動作していましたが、iOS 7 では、このビュー コントローラーでアラートを表示すると、左側のナビゲーション アイテムの色が青に変わり、フォントが大きくなります。検索後、使用できます
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
色を青に変更します。
しかし、フォントを変更するにはどうすればよいですか?