I a trying to create a UIScrollView
that fits exactly the contents of its subviews. I do this with a StackView
and the scroll view's height is determined by how much content there is in the stack view. Within the stack views, there are views that contain an UIImageView
and a UITextView
The UIScrollView
starts below the title view, however every time I want to add another view (which it should scroll when the content is bigger than the actual frame) there is an issue with the scroll view's Y position. This works perfectly if I only add UILabels
and UITextFields
, using the same procedure
How can I do it so I can programmatically add views on the stack view that includes an UIImageView
and a UITextView
, just as the View Controller with labels and textfields does.
You can download my app project at the following url https://github.com/francisc112/DescriptionWithImageApp.git