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?