Reputation: 61
I fixed the ScrollView under the navigation bar, in storyboard I fix under the Navigation bar here x=0,y=65, in coding the Content Size for the ScrollView I fixed
self.backgroundScrlView.contentSize=
CGSizeMake(self.view.bounds.size.width,self.view.bounds.size.height+350);
But it loading in the some other place I don't know why it loading there
Upvotes: 1
Views: 352
Reputation: 1330
Try self.automaticallyAdjustsScrollViewInsets = NO in your viewcontroller.
Note: This will not work for IOS 6.
Upvotes: 1