I'm having difficult dealing with the designing a layout that fits both 3.5inch iphone and 5 inch iPhone (Simulators). I had auto layout checked, and all the layouts were perfect. However I now need to use a UIScrollView, and therefore need to uncheck auto-layout to use.
Also when viewing the layout with an iPhone 4 inch display its adds about 60px to the top of the UIScrollView.
Is there a better way to do this (set up scrollview without deselecting auto-layout)? So i can support iPhone 4.
//to set up the scrollview
[self.scrollView setScrollEnabled:YES];
[self.scrollView setContentSize:CGSizeMake(320, 800)];
however it does not scroll until I uncheck the autolayout. Is there a better way to do this?