When I push to a UIViewControllerB
and then pop back to UIViewControllerA
entire view of UIViewControllerA
is about 20 px higher then it should be and in a moment (I guess after viewDidAppear
) it moves to its normal position. I do not manipulate constrains or UINavigationBar
settings in any way while this. I do have all elements of UIViewControllerA
top space to top layout guide. What might cause this? I've worked with storyboard a few and have never faced something like this.
AutoLayout weird behaviour iOS
122 views Asked by JuicyFruit At
3
This was somehow caused by removing subview, I've added to cover screen while loading data: after removing this subview, constrains where changed (this only happened on this
UIViewController
, otherUIViewControllers
with this subview are fine). I've fixed it by doing this: