When I create the UIWindow user interface in iOS9, the window becomes visible on the screen, but the status bar suddenly disappears.
When the window becomes hidden, the status bar appears again.
Below, 2 screenshots of what I get on iOS9 with Xcode7 beta5.
Status bar when user window is hidden: 
Status bar when custom window is displayed:
(The whole screen moves up.)
This is the code I'm using (which worked well on iOS8):
#define DEBUG_SHOWENV_HEIGHT 20.0f @interface AppDelegate () @property (nonatomic) UIWindow* envWindow; @end -(UIWindow*)envWindow { if (_envWindow == nil) {
I would be grateful for any help.
ios ios9 statusbar uiwindow
Runo sahara
source share