我有一个带有rootViewController的splitView控制器默认情况下我在rootViewController中放置了一个按钮我希望当单击该按钮时它应该将subView添加到rootViewController但它应该覆盖整个屏幕lighbox或我们打开html的弹出窗口,它应该覆盖所有screen 而不仅仅是 splitViewController 中 rootViewController 的 tableArea
-(void)onSettingButtonClick{
NSLog(@"Working click fine");
UIView*subView=[[UIView alloc]initWithFrame:CGRectMake(0,10,600,400)];
subView.backgroundColor=[UIColor greenColor];
[self.view addSubview:subView];
}