The question is plain easy and simple, the answer unfortunately not.
How can you change the font of the text in the UINavigationBar?
|
The question is plain easy and simple, the answer unfortunately not. How can you change the font of the text in the |
||||
|
From iOS 5 and later:
Earlier than iOS 5:
|
||||
|
The above answer works. I would add the following line before the last line. If I don't, it seems the label is center-aligned incorrectly if there is a back button on the left side but no right button.
|
|||
|
|
|
As of iOS 5 you can use the appearance proxy. The answer is in a duplicate of this question: http://stackoverflow.com/a/12364740/883413 |
|||
|
|
[self.navigationController.navigationBar setTitleTextAttributes:@{UITextAttributeFont:[UIFont fontWithName:<#(NSString *)#> size:<#(CGFloat)#>]}];– Philip007 Nov 9 '12 at 11:56