(我英语说得不好TT)
我想要 uiviewcontroller 中的全屏 uiview。
我使用此代码。
- (IBAction)addBtn:(id)sender {
addView = [[AddView alloc] initWithFrame:CGRectZero];
[[[UIApplication sharedApplication]delegate].window addSubview:addView];
addView.window.windowLevel = UIWindowLevelStatusBar;
[addView setAlpha:0.0f];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.35f];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[addView setAlpha:1.0f];
[UIView commitAnimations];
}
单击按钮 (+) 时
状态栏消失!!!!!!
当我在 ios6 中使用相同的代码时,它起作用了。但在 ios7 中不起作用。
为什么状态栏消失?