
正文
ios 添加朦层
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
@interface RootViewController : UIViewController
{
UIView *view;
}
-(void)createBackgroundView
{
view = [[UIView alloc]initWithFrame:self.view.frame];
view.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.0];
view.opaque = NO;
UIWindow *appWindow = [[UIApplicationsharedApplication] keyWindow];
[appWindow addSubview:view]; //覆盖全屏
[self.view addSubview:view];
[UIView animateWithDuration:0.2 animations:^{
view.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.25];
}];
}







