I have the following scrollview. Inside the scroll view is a ui view and inside that are sub views and buttons. dynamically increase the content size of the scroll view to make it fit the content.
self.scrollView.contentSize = CGSize(width: self.scrollView.contentSize.width, height: self.scrollView.contentSize.height + CGFloat(300))
The content view inside the scroll view is not scrolling to the end of the content, so that content gets cut off. What should I do so that I can see all of the content inside the content view?
See attached