iOSDev
iOSDev

Reputation: 61

scrollview is not loading under the Navigation Bar in ios

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

Answers (1)

Neva
Neva

Reputation: 1330

Try self.automaticallyAdjustsScrollViewInsets = NO in your viewcontroller.

Note: This will not work for IOS 6.

Upvotes: 1

Related Questions