1

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

Jonny C
  • 1,943
  • 3
  • 20
  • 36
iOSDev
  • 61
  • 4

1 Answers1

1

Try self.automaticallyAdjustsScrollViewInsets = NO in your viewcontroller.

Note: This will not work for IOS 6.

Neva
  • 1,330
  • 9
  • 11