The design guidelines for navigation bars should answer most of your questions.
https://developer.apple.com/ios/human-interface-guidelines/ui-bars/navigation-bars/arrow-up-right
By default, the title of the navigation bar is a label, but we can actually override it with anything.
For example, to add a search bar to the navigation bar, we can do:
Last updated 7 years ago
searchController = UISearchController() navigationItem.titleView = searchController.searchBar