我正在运行iOS7并且有一个UINavigation控制器和一个UIStatusBar,它们都是橙色的,它们完美融合,但是如果我在UINavigationController的视图顶部加载一个UIToolbar,那么它的黑线就是顶部如图所示:
我想知道如何摆脱这种情况或将其改为白色。
我已将此代码添加到ViewDidLoad
self.view.layer.borderColor = [UIColor whiteColor].CGColor;
self.view.layer.borderWidth = 0.5f;
在视图周围添加了一条白线,因此橙色工具栏不会直接到达边缘,因此这不是一个好的解决方案。
答案 0 :(得分:0)
我找到了一个解决方法,不确定这是否是最好的做法,也许我可以对它进行一些评论,但这就是我修复它的方法。
myToolBar = [[UIToolbar alloc] initWithFrame:CGRectMake(0.0, 0.0, self.view.frame.size.width, 45)];
[myToolBar setTranslucent:NO];
myToolBar.clipsToBounds = YES; // stop the top black line from showing.
UIView *modalViewLine = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, self.myToolBar.frame.size.width, 0.8)];
modalViewLine.backgroundColor = [UIColor whiteColor];
[myToolBar addSubview:modalViewLine];
最重要的是,使用 clipsToBounds 可以防止黑色阴影或线条形状出现在UIToolBar上方,然后我添加了一个带有白色背景的UIView,其高度为0.8pxl UIToolbar。
因此,如果您想在当前NavView上方堆叠模态视图,它将如下所示
越深入,每个视图添加的行数就越多。为用户提供良好的视觉效果,以便他们知道他们在应用程序中的位置。