Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Latest commit

 

History

History

change_the_nav_bar_title

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
id title sdk
98BFE003-F1B3-D4FF-30FF-FEBF63C83020
Change the Nav Bar Title

This recipe shows how to change the title displayed in a navigation bar.

Recipe

To set the text displayed in the navigation bar, set the Title property of the UIViewController:

NavigationItem.Title = "Custom Title";

Additional Information

The Title text can also appear in other places in the UI:

  • If your UIViewController has been pushed onto a UINavigationController stack, the Title will appear in the ‘back’ button that returns to it.
  • If your UIViewController has been added to a UITabBarContoller the Title will be used as the tab’s display text (if both Title and TabBarItem.Title are assigned, whichever is set last overrides the other).

If you dynamically change the title as your app runs, the updated text will also be reflected in the ‘back’ button and the tab.