Change the navigation bar's font

前端 未结 7 1407
没有蜡笔的小新
没有蜡笔的小新 2020-12-02 10:41

The question is plain easy and simple, the answer unfortunately not.

How can you change the font of the text in the UINavigationBar?

相关标签:
7条回答
  • 2020-12-02 11:17

    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.

    ...
    [self.navigationItem.titleView sizeToFit]; 
    [label release]; // not needed if you are using ARC
    
    0 讨论(0)
提交回复
热议问题