更改UINavigationBar背景图像

时间:2011-10-14 07:20:18

标签: iphone ios uinavigationcontroller uinavigationbar

我一直在尝试更改应用程序的UINavigationBar的背景图像。我尝试了几种方法。首先,我在AppDelegate类中添加了以下代码:

@implementation UINavigationBar (CustomImage)
    - (void)drawRect:(CGRect)rect {
    UIImage *image = [UIImage imageNamed: @"navigationbar.png"];
    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}
@end

但它没有用。我的下一个尝试是编写一个覆盖 drawRect 方法的CustomizedNavigationBar类。它看起来像是:

CustomizedNavigationBar.h

#import <UIKit/UIKit.h>

@interface CustomizedNavigationBar : UINavigationBar

@end

CustomizedNavigationBar.m

#import "CustomizedNavigationBar.h"

@implementation CustomizedNavigationBar

- (void) drawRect:(CGRect)rect {
    UIImage *image = [UIImage imageNamed: @"navigationbar.png"];
    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];

    NSLog(@"I got called!!!!!");
}

@end

在定义NavigationBar的.xib文件中,我将类更改为新的CustomizedNavigationBar。但它仍然无法正常工作..

作为另一项测试,我下载了一个示例项目,其中应该更改背景图像。但即使使用该示例代码也无法正常工作。

我做错了什么?我正在使用IOS 5.我可以定义背景图像的任何建议或其他方式吗?

感谢您的回答!

7 个答案:

答案 0 :(得分:77)

从iOS 5开始,您应该使用-setBackgroundImage:forBarMetrics:方法:

[myNavbar setBackgroundImage:[UIImage imageNamed: @"UINavigationBarBackground.png"] 
               forBarMetrics:UIBarMetricsDefault];

Swift 4

navigationBar.setBackgroundImage(UIImage(named: "UINavigationBarBackground.png"),
               for: .default)

答案 1 :(得分:8)

考虑到所有iOS版本,这似乎是在完成自定义背景图片和UINavigationBar的自定义尺寸:

@interface CustomNavigationBar : UINavigationBar
@end

@implementation CustomNavigationBar
-(void) drawRect:(CGRect)rect 
{
    UIImage *image = [UIImage imageNamed: @"navigationBar"];
    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];

    //for iOS5
    [self setBackgroundImage:[UIImage imageNamed: @"navigationBar"] forBarMetrics:UIBarMetricsDefault];
}

//for custom size of the UINavigationBar
- (CGSize)sizeThatFits:(CGSize)size {
    CGSize newSize = CGSizeMake(320,31);
    return newSize;
}

@end

我在像Utilities文件这样的公共场所使用这些代码。

希望这有帮助。

答案 2 :(得分:1)

尝试使用此代码..在您的文件(.m)文件中。

#import "RootViewController.h"

@implementation UINavigationBar (CustomImage)
- (void)drawRect:(CGRect)rect {
    UIImage *image = [UIImage imageNamed: @"navheader.png"];
    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}
@end

@implementation RootViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
    // self.navigationItem.rightBarButtonItem = self.editButtonItem;

    self.title=@"You are Done.";
}

这对我来说非常有效。

以上代码仅适用于IOS 4.如果您使用IOS 5,则使用.....

 [myNavbar setBackgroundImage:[UIImage imageNamed:
 @"UINavigationBarBackground.png"] 
                    forBarMetrics:UIBarMetricsDefault];

答案 3 :(得分:0)

您可以将UIImageview添加到导航栏,如下所示     UINavigationBar navBar = [[UINavigationBar alloc] init];     [navBar addSubview:imageview];     [navBar发布];

您可以查看帖子: iPhone - NavigationBar Custom Background

答案 4 :(得分:0)

iOS 4有一个简单的解决方案,例如:

nvc.navigationBar.layer.contents = (id)img.CGImage;

答案 5 :(得分:0)

您也可以尝试使用导航栏背景。

UINavigationBar *navigationBar = self.navigationController.navigationBar;
UIImage *image = [UIImage imageNamed: @"NavBar-Wood.png"];
[navigationBar setBackgroundImage:image forBarMetrics: UIBarMetricsDefault];
self.navigationController.navigationBar.tintColor = [UIColor brownColor];

感谢。

答案 6 :(得分:0)

在导航栏中设置图像的另一种方法是

UIImage* logo = [ UIImage imageNamed:@"Logo.png" ];
UIImageView* logoView = [[[UIImageView alloc] initWithImage:logo] autorelease];
self.navigationItem.titleView = logoView;

这不会改变整个导航栏背景。但是添加了一个以导航栏为中心的背景图像,这有时更有意义(我正在寻找)。