I have a ViewController with a ScrollView inside.
The SV is aligned to SafeArea (0,0,0,0).
Inside the SV, I have a UIView that has Leading, Trailing, Top and Bottom aligned to ContentLayoutGuide and the width equal to Frame Layout Guide.
Basically, as presented here https://medium.com/@fernandoepm.pro/how-to-add-a-scroll-view-to-the-storyboard-in-swift-project-updated-2023-3d0bb96f2869
Inside the UIView, I have a list of TestFields and labels. The UIView height is dynamic, based on the elements inside and their constraints.
In order to place all the controls inside the UIView, I switched the ViewController to Freeform (1630 height).
The problem is, it only scrolls a few pixels down and that’s it and I can’t seem to figure it out why.
Any thoughts?