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.