(我英语说得不好T.T)
我想要 uiviewcontroller 中的全屏 uiview。
我使用这个代码。
- (IBAction)addBtnid)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 中不起作用。
为什么会消失状态栏?
check my sorce code here.
Best Answer-推荐答案 strong>
在 viewdidLoad 函数中编写以下代码...
你的代码......///
[addView setAlpha:0.5];// make addsubview alpha 0.5
希望它会起作用......我的 friend !!!!
编码愉快!!!!!!
关于iphone - iOS7全屏uiview ..为什么会消失状态栏?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/19043536/
|