在我的应用程序中,我想启动一个重叠并变暗整个屏幕(包括UINavigationBar
)的UIView
,代码如下:
- (void)showInstruction
{
self.holedView = [[JMHoledView alloc] initWithFrame:[UIScreen mainScreen].bounds];
[self.view addSubview:self.holedView];
}
但事实上,self.holedView
只能在屏幕上没有UINavigationBar
的情况下使该地区变暗。我该怎么做?
您可以将视图作为子视图添加到窗口或导航控制器的视图中。
[self.navigationController.view addSubview:yourView];
或
[[[[UIApplication sharedApplication] delegate] window] addSubview:yourView];
创建视图的委托以在需要时将其从超级视图中删除
您可以使用变暗的透明图像并将其设置为导航栏的背景图像。
例如,在我的情况下,我制作了alpha 0.2的黑色透明图像并将其设置为导航背景图像,并使背景颜色清晰
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"black_patch.png"]
forBarMetrics:UIBarMetricsDefault];
[UINavigationBar appearance].translucent = YES;
navController.view.backgroundColor = [UIColor clearColor];
我用它来在主窗口中添加子视图:
[[UIApplication sharedApplication].keyWindow addSubview:view];
您可以将其添加到窗口中
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
UIView *backgrView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [[UIScreen mainScreen] bounds].size.width, [[UIScreen mainScreen] bounds].size.height)];
backgrView.backgroundColor = [UIColor blackColor];
backgrView.alpha = 0.6;
[[appDelegate window] addSubview:backgrView];
或
Try navigationBar.translucent = NO; , It is YES by default in iOS7.
So you can add a version check like this:
float systemVersion = [[[UIDevice currentDevice] systemVersion] floatValue];
if (systemVersion >= 7.0)
{
navigationBar.translucent = NO;
}