如何使导航栏背景颜色为clearColor?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使导航栏背景颜色为clearColor?相关的知识,希望对你有一定的参考价值。

我的配置文件视图控制器嵌入在导航控制器内部,并显示彩色导航栏。但我想避免那种或如何使导航栏背景颜色为clearColor。这样它就可以显示下面的图像,例如。推特应用

答案

试试这段代码:

[self.navigationBar setBackgroundImage:[UIImage new]
                         forBarMetrics:UIBarMetricsDefault];
self.navigationBar.shadowImage = [UIImage new];
self.navigationBar.translucent = YES;
self.navigationController.navigationBar.tintColor = [UIColor clearColor];
self.navigationController.navigationBar.backgroundColor = [UIColor clearColor];
另一答案

试试这个

    [self.navigationBar setBackgroundImage:[UIImage new]
                     forBarMetrics:UIBarMetricsDefault];
    self.navigationBar.shadowImage = [UIImage new];
    self.navigationBar.translucent = YES;

在迅速

   self.navigationBar.setBackgroundImage(UIImage(), forBarMetrics: UIBarMetrics.Default)
   self.navigationBar.shadowImage = UIImage()
   self.navigationBar.translucent = true
另一答案

这是非常样品,您可以尝试:

YourNavigation.navigationBar.barTintColor = [UIColor clearColor];

YourNavigation:输入您的NavigationController。

如果这有用,你可以为我加油!

谢谢

另一答案

把这一行放在AppDelegate的didFinsihLaunchingWithOptions:

    [[UINavigationBar appearance] setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault]; // This is for clear navigation bar 
    [[UINavigationBar appearance] setShadowImage:[UIImage new]]; // this for remvove line under the navigationbar
另一答案
[self.navigationController.navigationBar setBackgroundImage:[UIImage new]
                                              forBarMetrics:UIBarMetricsDefault];
self.navigationController.navigationBar.shadowImage = [UIImage new];
self.navigationController.navigationBar.translucent = YES;
self.navigationController.view.backgroundColor = [UIColor clearColor];
self.navigationController.navigationBar.backgroundColor = [UIColor clearColor];
另一答案

您无法使导航栏清晰。只需添加自定义视图,然后将其清除。

以上是关于如何使导航栏背景颜色为clearColor?的主要内容,如果未能解决你的问题,请参考以下文章

使导航栏活动链接背景颜色保持突出显示

无法使我的状态栏颜色与 SwiftUI 中的导航栏颜色匹配

如何在iOS 7上更改状态栏背景颜色和文本颜色? Warif Akhand Rishi

如何使导航栏透明优化按

如何将背景颜色设置为透明状态栏

如何使状态栏透明,文本颜色为灰色?