Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
623 views
in Technique[技术] by (71.8m points)

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

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.

enter image description here That works well at the first time !

enter image description here

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...