if you are still looking for the answer I found today, after two days of sorting through the wall. I will just paste you the code, but most importantly, when you load your scrollView ..
-(void)viewWillAppear:(BOOL)animated{ [scrollView setFrame:CGRectMake(0, 0, 320, 800)]; } -(void)viewDidAppear:(BOOL)animated { [scrollView setScrollEnabled:YES]; [scrollView setContentSize:CGSizeMake(320, 800)]; }
it all loads up to -(void)viewDidLoad
Please note that the height is 800 in both cases, which is critical to solving this problem. good luck in your project;)
kadore Nov 02 2018-12-12T00: 00Z
source share