蔗草、、疆柔、
UIView *fullView = [[UIView alloc] init];//fullView是window上放置的view咒精,作為superView
fullView.frame = self.view.bounds;
fullView.tag = kSLViewTypeFullView;//設置枚舉表示view的類型(用來確定window上所加的那個view)
fullView.backgroundColor = [UIColor clearColor];
[self.view.window addSubview:fullView];
//blackView是暗黑色的背景view
UIView *blackView = [[UIView alloc] init];
blackView.frame = fullView.bounds;
blackView.backgroundColor = [UIColor blackColor];
blackView.alpha = 0.7;
[fullView addSubview:blackView];
//callUpView是自定義的view也就是顯示的view
SLCallUpView *callUpView = [[SLCallUpView alloc] initWithFrame:CGRectMake(0, 0, 0.665 * fullView.width, 120)];
callUpView.center = fullView.center;
callUpView.phoneNumString = phoneStr;
[callUpView loadData];
callUpView.delegate = self;
callUpView.alpha = 1;
[fullView addSubview:callUpView];
、婆硬、狠轻、
移除的方法
、彬犯、向楼、
[[self.view.window viewWithTag:kSLViewTypeFullView]removeFromSuperview];
、谐区、湖蜕、
)