ChatGPT解决这个技术问题 Extra ChatGPT

IOS7 : UIScrollView offset in UINavigationController

I'm currently migrating my app on ios 7 and I've been stuck for hours on the new navigationcontroller/bar management.

Before, when we had a navigation controller, we had a snippet like this :

UINavigationController *navController = [[UINavigationController alloc]initWithRootViewController:[[MainViewController alloc]init]];

In interface builder, we had the choice to set an existing navigationbar for the view and everything match the content of the real view.

OK so now, i have no clue of how to design properly with interface builder. I still have my snippet to initialize my navcontroller. However in the interface builder for my MainViewController if I set a status bar to translucent or opaque navigation bar, i have an offset of 44px at the top (see below).

Interface Builder_________________________And the result

https://i.stack.imgur.com/JODqs.png

Now, if i set status bar to none, there is no offset at top but since the view on simulator is smaller because of navigation bar the bottom of the view in interface builder is cut off.

Interface Builder_________________________And the result

https://i.stack.imgur.com/RIhjR.png

I guess i'm really missing something here but i can't find any topic or apple info in iOS7 Transitions Guide about that.

Thanks for your help

EDIT

As we can see in the pictures, the first child of the view is a UIScrollView which contains both labels, the problem does not appear when there is no scrollview. It also appears if it's a UITableView. If a label is outside the UIScrollView, there is no offset to that label.

You may want to use Autolayout if you are not, so you can make sure certain views are a set distance away from the top/bottom/side of the screen
I'm indeed not using Autolayout, but using it (ticking the checkbox) does not solve the problem.
With Autolayout, you must set constraints in order for the views to stay in place. Xcode does not know what you want automatically.
Seeing your previous edit, I just discovered your issue. Unfortunately, it is not the most obvious solution. Rather than trying to explain it all over again, I used this video on Youtube to learn how to set up scroll views. youtube.com/watch?v=PgeNPRBrB18&feature=youtu.be Good Luck. It took me a couple times to watch it to fully understand what he is doing.

s
streem

OK so i found the solution, I have set in my controller the property:

self.automaticallyAdjustsScrollViewInsets = false

I don't really understand the true benefit of this property though, (or why the default value is true)

The only documentation i found was there:

https://web.archive.org/web/20160405135605/https://developer.apple.com/library/ios/documentation/userexperience/conceptual/TransitionGuide/AppearanceCustomization.html

https://developer.apple.com/documentation/uikit/uiviewcontroller/1621372-automaticallyadjustsscrollviewin

Update

In iOS 11 automaticallyAdjustsScrollViewInsets is deprecated

You should now use:

self.tableView.contentInsetAdjustmentBehavior = .never

I also encourage you to check this question and its answer to get a better understanding of those properties


Great find. UIScrollView in storyboard is really complicated. I wish Apple makes it a bit seamless in future versions of Xcode.
This code prevents my UIScrollView from scrolling. But without this I can't get rid off the offset. Weired...
This flag can also be switched off in your storyboard/nib, the View Controller has an "Adjust Scroll View Insets" checkbox. I've been banging my head against a wall for so long now trying to sort out my problems with scroll views and auto layout, further complicated by supporting iOS 6 & 7. So thanks so much for finally providing a solution!
App document would tell you that setting navigationbar.translucent = YES would prevent navigationbar from pushing the content down. It is the biggest lie and costed me many hours of work until this post. In addition, you must set self.automaticallyAdjustsScrollViewInsets = NO; Thank you so much for this post!!!!!!! Apple and apple?
I found that this caused my UIScrollView's bounds to shift down by the height of the nav bar (-64points). I manually overrode this to 0, but found the UISrollView would still scroll in the y-axis, and "snap" to an imaginary line at -64. Your solution solved this.
M
Myxtic

@Justafinger's answer worked like a charm for me as well.

Just wanted to add that this setting can also be adjusted easily from the interface builder.

Select your view controller Click the 'Attributes Inspector' tab Uncheck 'Adjust Scroll View Insets' Enjoy!

https://i.stack.imgur.com/tDz6D.png


Spent ages looking for this option in the UIScrollView properties and not the View Controller! Thanks!
B
Ben Nicholas

I was running into this same issue, but I found a rather odd property on the ViewController in interface builder that seems to have been causing this for me. There is an "Extend Edges" set of check boxes. I removed the "Under Top Bars" check, and everything started laying out properly for me.


Yup, this one worked for me better than "Adjust Scroll View Insets"
d
dawid

With automaticallyAdjustsScrollViewInsets set to YES (the default setting) there is a mismatch in scrollview positioning between ios6 and ios7, so to make them consistent you need to disable this setting. However, ios6 will crash if it comes across automaticallyAdjustsScrollViewInsets, so you either need to make a programatic change of automaticallyAdjustsScrollViewInsets conditional on ios7 or else switch off the option using the storyboard/NIB


C
Chuy47

I had a similar problem, after dismissing a viewController, the contentOffset from my tableView was changed to (0, -64).

my solution was a little weird, I tried all the other answers but had no success, the only thing that fixed my problem was to switch the tableView position in the controls tree of the .xib

it was the first control in the parent View like this:

https://i.stack.imgur.com/3ELFx.jpg

I moved the tableView right after the ImageView and it worked:

https://i.stack.imgur.com/OEwQR.jpg

it seems that putting the table view in the first position was causing the trouble, and moving the table view to another position fixed the problem.

P.D. I'm not using autoLayout neither storyboards

hope this can help someone!


I noticed this weird behavior, i believe the logic behind is that the scrollViewInsets are automatically ajusted when a scrollview is the first child. Otherwise it does not really make sense because your scrollview is probaby not full screen.
B
Bista

I also face this problem.

UIScrollView content size is calculate by OS as other sizes, origins provided by constraint system - that's why OS has doubtfulness.

How to fix - You should explicitly define content size of UIScrollView:

Embed scrollable content to UIView (I rename it to ContentView) Add constraints:

ContentView.Weight = View.Weight and ContentView.Height = View.Height

https://i.stack.imgur.com/NYaKe.png


s
swhitman

It seems like a work around solution is to view the storyboard file as "iOS 6.1 and earlier" (select storyboard file->File inspector->Interface Builder Document->View As. Positioning subviews in this mode shows the offset.


Well, i'm not using storyboard. However I'm not sure it's an ios6 to ios7 problem, the example above has been fully created with iOS 7. Moreover, I edited my question, it only appears (as far as i know) with uiscrollview and uitableview.
Hmm interesting...Looking into this you can add variant="6xAndEarlier" to the top of the XIB in the document element, as this is the difference when flipping the bit I mentioned above. And FYI this issue happens for uiwebview as well for me.
J
Jackson Gan

Thank you guys for the solutions! I struggled for hours trying to solve the problem. Everything was ok when there was no Navigation Bar involved but it went haywire the moment I embedded the ViewController in a NavigationController.

I solved it by unchecking the Adjust Scroll View Insets and the Under Top Bars. Both of these are located in the ViewController's Attribute Inspector. Thanks a million!