1

How do I stop a large title navigation bar from collapsing when a UIScrollView is scrolled? I have tried setting

navigationItem.largeTitleDisplayMode = .always

but that did not work. Another question had an answer suggesting just to add

view.addSubview(UIView())

to the viewDidLoad() but this did not work either. Any ideas?

Jacob Cavin
  • 2,169
  • 3
  • 19
  • 47
  • 1
    Possible duplicate of [Static/fixed Navigation Bar in iOS](https://stackoverflow.com/questions/51486867/static-fixed-navigation-bar-in-ios) – Caleb Jul 31 '19 at 05:06

1 Answers1

0

this answer by Kamran has a great explanation of how to do this.

Fixed Navigation Bar

Good luck!https://stackoverflow.com/questions/51486867/static-fixed-navigation-bar-in-ios

Mike
  • 170
  • 1
  • 11