ChatGPT解决这个技术问题 Extra ChatGPT

如何在 iOS 7 或 6 中更改导航栏颜色?

我想更改导航栏颜色的颜色,但我不确定是否应该更改色调或背景。我知道 iOS 7 将采用更扁平化的设计(甚至 recommending removing gradients),但我在解读这两者时遇到了麻烦。即使我设置了背景颜色,它也不会做任何事情。

在此图像中,背景设置为绿色,但条仍为蓝色:

https://i.stack.imgur.com/IwIoZ.png


M
Mahesh

iOS 7.0 中条形的 tintColor 行为已更改。它不再影响栏的背景,其行为与添加到 UIView 的 tintColor 属性的描述相同。要为栏的背景着色,请使用 -barTintColor。

navController.navigationBar.barTintColor = [UIColor navigationColor];


已确认, tintColor 在 iOS 7 中不起作用,但 barTintColor 可以。
您可能还想设置 navController.navigationBar.translucent = NO
在此处查看完整答案:stackoverflow.com/questions/18929864/…
C
Carmen

如果您想在 iOS 6 中为导航栏设置类似于 iOS 7 的纯色,请使用以下命令:

[[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];
[[UINavigationBar appearance] setBackgroundColor:[UIColor greenColor]];

iOS 7 中使用 barTintColor,如下所示:

navigationController.navigationBar.barTintColor = [UIColor greenColor];

或者

 [[UINavigationBar appearance] setBarTintColor:[UIColor greenColor]];

我正在使用自定义导航栏,上面的代码对我不起作用(ios7)。我必须明确地写这个: [[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];
[[UINavigationBar 外观] setBarTintColor:[UIColor greenColor]];应该在 iOS 7 中工作
A
Ashish

// 在 iOS 7 中:-

[self.navigationController.navigationBar setBarTintColor:[UIColor yellowColor]];

// 在 iOS 6 中:-

[self.navigationController.navigationBar setTintColor:[UIColor yellowColor]];

感谢它的工作,但如何改变 purticular viewcontroller 导航栏颜色请帮助我
C
Charles A.

UINavigationBar 上的背景颜色属性被忽略,因此如果您想调整外观和感觉,您必须使用 tintColor 或调用 {1 的“自定义条形外观”下列出的一些其他方法}(如 setBackgroundImage:forBarMetrics:)。

请注意,tintColor 属性在 iOS 7 中的工作方式不同,因此,如果您希望 iOS 7 和之前版本之间的外观保持一致,则最好使用背景图像。还值得一提的是,您无法在 Storyboard 中配置背景图像,您必须为您的 UINavigationBar 创建一个 IBOutlet 并在 viewDidLoad 或其他适当的位置进行更改。


T
Tarek Hallak

还有一件事,如果您想更改 UIPopover 中的导航背景颜色,您需要将 barStyle 设置为 UIBarStyleBlack

if([UINavigationBar instancesRespondToSelector:@selector(barTintColor)]){ //iOS7
    navigationController.navigationBar.barStyle = UIBarStyleBlack;
    navigationController.navigationBar.barTintColor = [UIColor redColor];
}

p
pizzamonster

以下是如何为 iOS 6 和 7 正确设置它。

+ (void)fixNavBarColor:(UINavigationBar*)bar {
    if (iosVersion >= 7) {
        bar.barTintColor = [UIColor redColor];
        bar.translucent = NO;
    }else {
        bar.tintColor = [UIColor redColor];
        bar.opaque = YES;
    }
}

而不是检查 iosVersion 您应该使用 respondsToSelector 即 [[UINavigationBar appearance] respondsToSelector:@selector(barTintColor)]
对于代理,您应该使用 instanceRespondToSelector。对于这种情况,它将是 [UINavigationBar instancesRespondToSelector:@selector(barTintColor)]
k
kalan nawarathne

带有版本检查的完整代码。

 if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_6_1) {

    // do stuff for iOS 7 and newer
    [self.navigationController.navigationBar setBarTintColor:[UIColor yellowColor]];
}
else {

    // do stuff for older versions than iOS 7
    [self.navigationController.navigationBar setTintColor:[UIColor yellowColor]];
}

P
PRITAM SATPUTE

您可以检查 iOS 版本并简单地设置导航栏的色调颜色。

if (SYSTEM_VERSION_LESS_THAN(@"7.0")) {
    self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:0.9529 green:0.4392 blue:0.3333 alpha:1.0];
}else{

    self.navigationController.navigationBar.barTintColor = [UIColor colorWithRed:0.9529 green:0.4392 blue:0.3333 alpha:1.0];
    self.navigationItem.leftBarButtonItem.tintColor = [UIColor whiteColor];
    [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
}

R
Roozbeh Zabihollahi

根据发布的回答,这对我有用:

/* check for iOS 6 or 7 */
if ([[self navigationController].navigationBar respondsToSelector:@selector(setBarTintColor:)]) {
    [[self navigationController].navigationBar setBarTintColor:[UIColor whiteColor]];

} else {
    /* Set background and foreground */
    [[self navigationController].navigationBar setTintColor:[UIColor whiteColor]];
    [self navigationController].navigationBar.titleTextAttributes = [[NSDictionary alloc] initWithObjectsAndKeys:[UIColor blackColor],UITextAttributeTextColor,nil];
}

H
Hitesh Vaghela
    you can add bellow code in appdelegate.m .if your app is navigation based

    // for background color
   [nav.navigationBar setBarTintColor:[UIColor blueColor]];

    // for change navigation title and button color
    [[UINavigationBar appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],
    NSForegroundColorAttributeName,               
    [UIFont fontWithName:@"FontNAme" size:20],
    NSFontAttributeName, nil]];
    [[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];

A
Alexander Farber

在 AppDelegate.m 的 didFinishLaunchingWithOptions() 中插入以下代码

[[UINavigationBar appearance] setBarTintColor:[UIColor
    colorWithRed:26.0/255.0 green:184.0/255.0 blue:110.0/255.0 alpha:1.0]];

t
tomec

我正在使用以下代码(在 C# 中)来更改 NavigationBar 的颜色:

NavigationController.NavigationBar.SetBackgroundImage (new UIImage (), UIBarMetrics.Default);
NavigationController.NavigationBar.SetBackgroundImage (new UIImage (), UIBarMetrics.LandscapePhone);
NavigationController.NavigationBar.BackgroundColor = UIColor.Green;

诀窍是您需要摆脱默认的背景图像,然后颜色才会出现。


您的代码适用于导航栏,但您能否将相同的背景应用于状态栏?
据我所知,在 iOS6 中您无法更改状态栏颜色。你只能让它“半透明”。在 iOS7 中,你可以改变状态栏的颜色,但它是通过 NavigationBar 的背景图像来实现的。在 iOS7 中,我使用具有首选颜色的 1x1 像素图像作为 NavigationBar 背景图像,并且它也会自动扩展到状态栏(如 Apple 官方 iOS7 文档中所述)。
K
Kyokook Hwang

如果要更改导航栏的颜色,请使用它的 barTintColor 属性。此外,如果您将任何颜色设置为它的 tintColor,则会影响导航栏的项目,例如按钮。

仅供参考,您想保留 iOS 6 样式栏,使背景图像看起来像以前的样式并设置它。

有关更多详细信息,您可以从以下链接获取更多信息:

https://developer.apple.com/library/ios/documentation/userexperience/conceptual/TransitionGuide/AppearanceCustomization.html


m
muzz

在 iOS7 中,如果您的导航控制器包含在选项卡栏、拆分视图或其他容器中,则要全局更改导航栏外观,请使用以下方法::

[[UINavigationBar appearanceWhenContainedIn:[UITabBarController class],nil] setBarTintColor:[UIColor blueColor]];

g
geet Sebastian

在您的 ViewController.m- (void)viewDidLoad 中尝试以下代码

[[[self navigationController] navigationBar] setTintColor:[UIColor yellowColor]];

这在iOS 6中对我有用..试试看..


J
Jitendra

我不确定更改色调与背景颜色,但这是您更改导航栏色调颜色的方式:

试试这个代码..

[navigationController.navigationBar setTintColor:[UIColor redColor]; //以红色为例。