【发布时间】:2015-11-26 05:04:48
【问题描述】:
当我在 iOS9 中创建自定义 UIWindow 时,窗口在屏幕上变得可见,但状态栏突然消失了。
当窗口被隐藏时,状态栏再次出现。
下面是我使用 Xcode7 beta5 在 iOS9 上获得的 2 个屏幕截图。
这是我正在使用的代码(在 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;
}
}];
}
}];
我将不胜感激。
【问题讨论】:
-
为什么你有一个自定义窗口,而不仅仅是一个
UIViewController? -
因为我希望它在应用程序激活时显示(即使在转换等期间)
标签: ios statusbar ios9 uiwindow