I have a view controller (view1) that prefers a hidden status bar. I have a button that presents another view controller (view2) modally from the bottom of the screen (a 'Show' segue in my storyboard) and view2 prefers a visible status bar. On iOS 8, this is a smooth transition from view1 to view2, but on iOS 9 the status bar immediately appears in view1 when I press the button and the entire view of view1 shifts down to accommodate it.
This is an ugly effect and I wish to avoid it. For some reason iOS 8 handles this much more gracefully than iOS 9. Is there a fix for this?