1
[[UINavigationBar appearance] setTitleTextAttributes:
@{UITextAttributeTextColor: navTextColor,
UITextAttributeTextShadowColor: navTextColor,
UITextAttributeTextShadowOffset: [NSValue valueWithUIOffset:UIOffsetMake(0, 0)],
UITextAttributeFont: [UIFont fontWithName:@"HelveticaNeue-Bold" size:12]}];
該代碼更改UINavigationBar的的字體HelveticaNeue-大膽和大小設置爲12如何更改字體而不更改大小?
,如果我不想大小設置爲12。我只是想要的字體是HelveticaNeue
什麼我該怎麼辦?
獲取它已有的字體大小並使用它? – JoshRagem
這是一種方法。所以指定字體總是指定的大小我猜,你不能解耦。現在我怎麼知道UINavigationBar使用的默認字體大小? –