如何设置 Slide Navigation Controller 导航栏颜色?
How to set Slidenavigationcontroller naviagtion bar color?
我正在使用 slidenavigationcontroller 开发 iOS 应用程序,我为侧边菜单集成了 viewcontroller,一切正常 fine.But 导航栏背景颜色不是 changing.The 代码我曾经为导航栏背景设置背景颜色。
[SlideNavigationController sharedInstance].navigationBar.backgroundColor = [UIColor redColor];
隐藏颜色如下图
我做错了什么?slidenavigationcontroller.Please有什么具体的方法可以帮助修复吗this.Thanks
试试这个。
[[UINavigationBar appearance] setBarTintColor:myColor];
[[UINavigationBar appearance] setTranslucent:NO];
更多详情,您可以参考以下链接:
1)How to change UINavigationBar background color from the AppDelegate
2)Set background color for UINavigationBar
3)Setting the background color of UINavigationBar has no effect?
我正在使用 slidenavigationcontroller 开发 iOS 应用程序,我为侧边菜单集成了 viewcontroller,一切正常 fine.But 导航栏背景颜色不是 changing.The 代码我曾经为导航栏背景设置背景颜色。
[SlideNavigationController sharedInstance].navigationBar.backgroundColor = [UIColor redColor];
隐藏颜色如下图
我做错了什么?slidenavigationcontroller.Please有什么具体的方法可以帮助修复吗this.Thanks
试试这个。
[[UINavigationBar appearance] setBarTintColor:myColor];
[[UINavigationBar appearance] setTranslucent:NO];
更多详情,您可以参考以下链接:
1)How to change UINavigationBar background color from the AppDelegate
2)Set background color for UINavigationBar
3)Setting the background color of UINavigationBar has no effect?