我正在尝试使用以下导航器属性将屏幕背景设置为透明:
screenBackgroundColor: 'transparent'
此外,我在XCode中将根视图的背景色更改为绿色,如下所示:
self.window.backgroundColor = [UIColor greenColor];
我希望看到绿色背景而不会受到任何干扰。在Simulator中运行时,我看到一个带有一些不透明度的黑色矩形,并且在边距上有一个朝向绿色的渐变...(请参见下面的屏幕截图)如何解决该问题?也许我缺少一些标志?
black rectangle instead of green background
我还使用了其他导航器样式属性:
navBarTranslucent: true
navBarTransparent: true,
navBarNoBorder: true,
drawUnderNavBar: true
navBarTranslucent:true,
navBarBlur: false,
在这里,我尝试将NavBar设置为红色背景色,但仍然无法使用:
navbar background color red instead of transparent - still not working