Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why UIScrollView is leaving space from top in ios 6 and ios 7

enter image description here

enter image description here

I have turned off Autolayout and viewcontroller is embedded in navigation controller. I am using Xcode 5, Storyboard.

I don't understand why is it leaving space from top. Actually in storyboard i have put my label exactly below navigation bar. But when i run it on simulator then it leaves space from top.

One of the hacky way to resolve this

-(void)viewWillLayoutSubviews {    self.scrollViewMain.frame = CGRectMake(0, -70, 320, 800);     self.scrollViewMain.contentSize = CGSizeMake(320, 800); } 

But am i missing something very simple approach.

like image 676
bhavya kothari Avatar asked Dec 17 '13 09:12

bhavya kothari


2 Answers

In Xcode 5, in storyboard select your controller > in Attribute Inspector disable Adjust Scroll View Insets Also check if you have set any contentInset

Edit : I attached a pic

enter image description here

like image 94
Raheel Sadiq Avatar answered Sep 28 '22 22:09

Raheel Sadiq


The fix is to implement the following line of code after in the viewDidLoad;

self.automaticallyAdjustsScrollViewInsets = NO;

like image 28
Anooj VM Avatar answered Sep 28 '22 22:09

Anooj VM