How to set font family to Navigation Controller Title in swift?

家住魔仙堡 提交于 2019-11-27 08:44:38

问题


I have one View Controller named "Home". I embed it in Navigation Controller.

 self.navBar.topItem?.title = "Home"

I would like to change "Tharlon" font to my UIViewController title bar.

self.navBar.topItem?.title = NSLocalizedString("Home", comment: "")
self.navigationController?.navigationBar.titleTextAttributes = [NSFontAttributeName: UIFont(name: "Tharlon", size: 17)!]


Both these codes are in ViewDidLoad() function.
When I run the app, Translated text shows well at the first time. Then, I open other menus and goes back to Home. At that second time, translated text does not show well and it does not looks in Unicode font.

That works well at the first time !

This is not well after I view other pages and goes back to Home.

I also tried to put these above code in ViewWillAppear . But it still not works.
Please, can anyone help me?

来源:https://stackoverflow.com/questions/44304498/how-to-set-font-family-to-navigation-controller-title-in-swift

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!