[[UINavigationBar appearance] setTitleTextAttributes:
@{UITextAttributeTextColor: navTextColor,
UITextAttributeTextShadowColor: navTextColor,
UITextAttributeTextShadowOffset: [NSValue valueWithUIOffset:UIOffsetMake(0, 0)],
UITextAttributeFont: [UIFont fontWithName:@"HelveticaNeue-Bold" size:12]}];
このコードは、UINavigationBarのフォントをHelveticaNeue-Boldに変更し、サイズを12に設定します。
サイズを12に設定したくない場合はどうでしょうか。フォントをHelveticaNeueにしたいだけです。
私は何をすべきか?