0

From a UITabbarViewController I have a root view controller CarDetails as in the first image. This VC can scroll upwards as shown in the second image, with the large title transitioning to regular navigation display, with the title entered, on the top.

I want the initial view not to show the (large) title, while keeping the transitioning so that the title smoothly appears on top.

How would you do that?

Not scrolled

Once scrolling

Stéphane de Luca
  • 12,745
  • 9
  • 57
  • 95

2 Answers2

0

Try this in XCode:

  1. Select your navigationController -> navigationbar.
  2. On the right side, in the Attributes inspector, change Large Title color from default to clear.

Change Large Title Color

Starsky
  • 1,829
  • 18
  • 25
0

Here is the Swift version of @Starsky idea:

    navigationController?.navigationBar.largeTitleTextAttributes = [.foregroundColor: UIColor.clear]
Stéphane de Luca
  • 12,745
  • 9
  • 57
  • 95