iOS9: 自定义 UIWindow 使状态栏消失
iOS9: Custom UIWindow makes status bar disappear
当我在 iOS9 中创建自定义 UIWindow 时,window 在屏幕上可见,但状态栏突然消失。
当window隐藏时,状态栏再次出现。
下面是我在 iOS9 和 Xcode7 beta5.
上获得的 2 个屏幕截图
隐藏自定义 window 时的状态栏:
自定义 window 可见时的状态栏:
(整个屏幕移动到顶部。)
这是我正在使用的代码(在 iOS8 上运行良好):
#define DEBUG_SHOWENV_HEIGHT 20.0f
@interface AppDelegate ()
@property (nonatomic) UIWindow* envWindow;
@end
-(UIWindow*)envWindow
{
if (_envWindow == nil)
{
// Create the window
_envWindow = [[UIWindow alloc] initWithFrame:CGRectMake(0.0f, self.window.frame.size.height, self.window.frame.size.width, DEBUG_SHOWENV_HEIGHT)];
_envWindow.rootViewController = [[UIViewController alloc] init]; // added since iOS9 to avoid the assertion
_envWindow.userInteractionEnabled = NO;
_envWindow.windowLevel = UIWindowLevelStatusBar;
_envWindow.backgroundColor = [UIColor colorWithRed:0.243 green:0.471 blue:0.992 alpha:0.8];
// Make a label
UILabel* labelEnv = [[UILabel alloc] initWithFrame:CGRectMake(8.0f, 0.0f, _envWindow.bounds.size.width - 16.0f, DEBUG_SHOWENV_HEIGHT)];
labelEnv.font = [UIFont boldSystemFontOfSize:12.0f];
labelEnv.textColor = [UIColor whiteColor];
labelEnv.text = @"DEVELOP ENVIRONMENT";
[_envWindow addSubview:labelEnv];
}
return _envWindow;
}
// ==== in applicationDidBecomeActive
// Show the window 2 seconds then hide it.
[self.envWindow.layer removeAllAnimations];
self.envWindow.frame = CGRectMake(0.0f, self.window.frame.size.height, self.window.frame.size.width, DEBUG_SHOWENV_HEIGHT);
self.envWindow.hidden = NO;
[UIView animateWithDuration:0.25f
delay:0.0f
options:UIViewAnimationOptionCurveEaseOut
animations:^{
self.envWindow.frame = CGRectMake(0.0f, self.window.frame.size.height - DEBUG_SHOWENV_HEIGHT, self.window.frame.size.width, DEBUG_SHOWENV_HEIGHT);
}
completion:^(BOOL finished) {
if (finished)
{
[UIView animateWithDuration:0.25f
delay:2.0f
options:UIViewAnimationOptionCurveEaseOut
animations:^{
self.envWindow.frame = CGRectMake(0.0f, self.window.frame.size.height, self.window.frame.size.width, DEBUG_SHOWENV_HEIGHT);
}
completion:^(BOOL finished) {
if (finished)
{
self.envWindow.hidden = YES;
}
}];
}
}];
如有任何帮助,我将不胜感激。
行 _envWindow.windowLevel = UIWindowLevelStatusBar;
将您的 window 置于与状态栏相同的级别(z 顺序)。我想你想要的是UIWindowLevelNormal
,让状态栏出现在它上面。
已解决。
我需要在根视图控制器中实现这个方法:
- (BOOL)prefersStatusBarHidden
{
return NO;
}
由于某些原因,此 UIWindow 中的根视图控制器隐藏了状态栏。
(尽管默认情况下应该 return NO,通常)
所以不要这样做:
_envWindow.rootViewController = [[UIViewController alloc] init]; // added since iOS9 to avoid the assertion
我创建了自己的视图控制器并覆盖了 prefersStatusBarHidden。
当我在 iOS9 中创建自定义 UIWindow 时,window 在屏幕上可见,但状态栏突然消失。
当window隐藏时,状态栏再次出现。
下面是我在 iOS9 和 Xcode7 beta5.
上获得的 2 个屏幕截图隐藏自定义 window 时的状态栏:
自定义 window 可见时的状态栏:
这是我正在使用的代码(在 iOS8 上运行良好):
#define DEBUG_SHOWENV_HEIGHT 20.0f
@interface AppDelegate ()
@property (nonatomic) UIWindow* envWindow;
@end
-(UIWindow*)envWindow
{
if (_envWindow == nil)
{
// Create the window
_envWindow = [[UIWindow alloc] initWithFrame:CGRectMake(0.0f, self.window.frame.size.height, self.window.frame.size.width, DEBUG_SHOWENV_HEIGHT)];
_envWindow.rootViewController = [[UIViewController alloc] init]; // added since iOS9 to avoid the assertion
_envWindow.userInteractionEnabled = NO;
_envWindow.windowLevel = UIWindowLevelStatusBar;
_envWindow.backgroundColor = [UIColor colorWithRed:0.243 green:0.471 blue:0.992 alpha:0.8];
// Make a label
UILabel* labelEnv = [[UILabel alloc] initWithFrame:CGRectMake(8.0f, 0.0f, _envWindow.bounds.size.width - 16.0f, DEBUG_SHOWENV_HEIGHT)];
labelEnv.font = [UIFont boldSystemFontOfSize:12.0f];
labelEnv.textColor = [UIColor whiteColor];
labelEnv.text = @"DEVELOP ENVIRONMENT";
[_envWindow addSubview:labelEnv];
}
return _envWindow;
}
// ==== in applicationDidBecomeActive
// Show the window 2 seconds then hide it.
[self.envWindow.layer removeAllAnimations];
self.envWindow.frame = CGRectMake(0.0f, self.window.frame.size.height, self.window.frame.size.width, DEBUG_SHOWENV_HEIGHT);
self.envWindow.hidden = NO;
[UIView animateWithDuration:0.25f
delay:0.0f
options:UIViewAnimationOptionCurveEaseOut
animations:^{
self.envWindow.frame = CGRectMake(0.0f, self.window.frame.size.height - DEBUG_SHOWENV_HEIGHT, self.window.frame.size.width, DEBUG_SHOWENV_HEIGHT);
}
completion:^(BOOL finished) {
if (finished)
{
[UIView animateWithDuration:0.25f
delay:2.0f
options:UIViewAnimationOptionCurveEaseOut
animations:^{
self.envWindow.frame = CGRectMake(0.0f, self.window.frame.size.height, self.window.frame.size.width, DEBUG_SHOWENV_HEIGHT);
}
completion:^(BOOL finished) {
if (finished)
{
self.envWindow.hidden = YES;
}
}];
}
}];
如有任何帮助,我将不胜感激。
行 _envWindow.windowLevel = UIWindowLevelStatusBar;
将您的 window 置于与状态栏相同的级别(z 顺序)。我想你想要的是UIWindowLevelNormal
,让状态栏出现在它上面。
已解决。 我需要在根视图控制器中实现这个方法:
- (BOOL)prefersStatusBarHidden
{
return NO;
}
由于某些原因,此 UIWindow 中的根视图控制器隐藏了状态栏。 (尽管默认情况下应该 return NO,通常)
所以不要这样做:
_envWindow.rootViewController = [[UIViewController alloc] init]; // added since iOS9 to avoid the assertion
我创建了自己的视图控制器并覆盖了 prefersStatusBarHidden。