我正在尝试在我的应用程序中添加和使用字体。我已经关注这篇文章以供参考,但我无法让它工作。
我已将字体添加Frutiger95UltraBlack.ttf
为支持文件,然后将其添加到我的 {app-name}-Info.plist 中。
然后尝试在我的应用程序委托中使用它来更改我的UINavegationBar
但没有任何反应。
我错过了什么??
[[UINavigationBar appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor], UITextAttributeTextColor,
[UIFont fontWithName:@"Frutiger95UltraBlack" size:16.0], UITextAttributeFont,nil]];