I have got a View Controller embedded in a Navigation Controller with prefers large titles option set to true; inside the View Controller there’s a Scroll View.
I wa
You need to:
Pin scroll top view to super view top
Add
override func viewDidLoad() { super.viewDidLoad() scrollView?.alwaysBounceVertical = true }