iOS7 UIWindow状态栏隐藏后高度错误

时间:2016-12-21 13:19:51

标签: iphone ios7 uiwindow uistatusbar ios7-statusbar

我将一个带有UIView子视图的UIWindow添加到当前关键窗口。

CGFloat width = 35;    
self.window = [[UIWindow alloc] initWithFrame:CGRectMake(0, [UIScreen mainScreen].bounds.size.height - width, width, width)];
self.window.backgroundColor = [UIColor yellowColor];
self.window.windowLevel = UIWindowLevelStatusBar;
self.window.hidden = NO;

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, width, width)];
view.backgroundColor = [UIColor redColor];
[self.window addSubview:view];

chepner

当我打电话时

 [[UIApplication sharedApplication] setStatusBarHidden:sender.selected withAnimation:UIStatusBarAnimationSlide];

在iOS7中,添加窗口后,窗口的高度自动更改为屏幕高度

enter image description here

那么可能导致这个问题的原因是什么?

0 个答案:

没有答案