Search code examples
iosswiftuinavigationcontrolleruinavigationitem

Change font of prompt in UINavigationController


can someone help me out in changing font, size and color in prompt string on my NavigationController?

In the attachment, I want to modify "Consulenze" string. Thank you everybodyenter image description here

Edit: I already tried the solution found here but no results.


Solution

  • You can try following ways: 1) In viewDidLoad of your ViewController add this lines:

    self.navigationController?.navigationBar.tintColor = UIColor.white
    
    let navigationTitleFont = UIFont(name: "Avenir", size: 20)!
    
    self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedStringKey.font: navigationTitleFont]
    

    2) You can create completely custom nav bar, just add UIView to the top your view and add all necessary elements - buttons, labels, etc.