I have a uiscrollview dragged onto the storyboard that is 320x570.
In my viewDidLoad, I have added in
self.scrollView.delegate = self;
self.scrollView.userInteractionEnabled = YES;
self.scrollView.contentSize = self.view.frame.size;
Now when I run the app on the iPhone 5 simulator, my view scrolls but not to the very bottom. When I run the app on the iPhone 4 (smaller screen), it does not scroll at all. What determines how far the scroll should go?