ดังนั้นฉันจึงมีรหัสนี้ที่ควรเปลี่ยนแบบอักษรหัวเรื่องของแถบนำทาง แต่มันทำได้ดีที่สุด
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIFont
fontWithName:_dataManager.optionsSettings.fontString size:14], NSFontAttributeName,
[UIColor whiteColor], NSForegroundColorAttributeName, nil];
[[UINavigationBar appearance] setTitleTextAttributes:attributes];
การเปลี่ยนแบบอักษรของปุ่มย้อนกลับด้วยรหัสนี้ใช้ได้ดี
//set backbutton font
NSDictionary *normalAttributes = [NSDictionary dictionaryWithObjectsAndKeys:
[UIFont fontWithName:_dataManager.optionsSettings.fontString size:15], NSFontAttributeName,
nil];
[[UIBarButtonItem appearance] setTitleTextAttributes:normalAttributes
forState:UIControlStateNormal];