I want the following. I have a navigation bar at the bottom of my app. Above I have a scrollview where the user can scroll to. Look at the image below.
Inside my scrollview I've added an image. This is what I do in code.
[scrollView setContentSize:(CGSizeMake(1024, 1400))];
[scrollView setScrollEnabled:YES];
[imgWebsite setFrame:CGRectMake(0, 0, imgWebsite.frame.size.width, 1400)];
Problem
My scrollview comes over my navigation bar at the bottom and so it is not visible. How do I solve this?