If you set the title of the navigation bar so that it prefers large headings, for example, like this:
navigationBar.prefersLargeTitles = true
then you need to use the largeTitleTextAttributes property, not the titleTextAttributes property. If you set the navigation title as a large title, titleTextAttribute is not the right property to use. Use the largeTitleTextAttributes property, for example, like this:
navigationBar.largeTitleTextAttributes = [.foregroundColor: UIColor.white]
Mat christensen
source share