I\'m new to Storyboards; I\'ve done some Interface Builder before and lots of manual UI positioning. I\'ve searched this issue, tried the solutions found in the other releva
Just add the following method:
- (void)viewDidLayoutSubviews
{
[super viewDidLayoutSubviews];
[self.scrollView setContentSize:CGSizeMake(320, 1700)];
}
This is working perfectly for me.
Two things turned out to be necessary:
1) Set height of scrollview to 480.
2) Add constraint to the bottommost field in the scrollview. The constraint was Pin >> Bottom Space to Superview.