Run*_*ara 8 statusbar uiwindow ios ios9
当我在iOS9中创建自定义UIWindow时,窗口会在屏幕上显示,但状态栏突然消失.
当窗口隐藏时,状态栏会再次出现.
下面是我在iOS9上使用Xcode7 beta5获得的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;
}
}];
}
}];
Run Code Online (Sandbox Code Playgroud)
我很感激任何帮助.
解决了.我需要在根视图控制器中实现此方法:
- (BOOL)prefersStatusBarHidden
{
return NO;
}
Run Code Online (Sandbox Code Playgroud)
出于某些原因,此UIWindow中的根视图控制器隐藏了状态栏.(虽然默认情况下它应该返回NO,通常)
所以不要这样做:
_envWindow.rootViewController = [[UIViewController alloc] init]; // added since iOS9 to avoid the assertion
Run Code Online (Sandbox Code Playgroud)
我创建了自己的视图控制器,并覆盖了prefersStatusBarHidden.
| 归档时间: |
|
| 查看次数: |
4013 次 |
| 最近记录: |