web-dev-qa-db-ja.com

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.を使用しています。背景画像を定義するための提案やその他の方法はありますか?

ご回答ありがとうございます!

22
Prine

IOS 5以降では -setBackgroundImage:forBarMetrics: メソッド:

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

そしてSwift 4

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

すべての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

このようなコードは、ユーティリティファイルのような一般的な場所で使用します。

お役に立てれば。

8
theunexpected1

このコードを試してみてください。実装(.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];
1
Ajay Sharma

IOS 4には、次のような簡単な解決策があります。

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

ナビゲーションバーの背景にこれを試すこともできます。

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

ありがとう。

0

ナビゲーションバーで画像を設定する別の方法は、

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

これにより、ナビゲーションバーの背景全体が変更されることはありません。しかし、ナビゲーションバーを中心とした背景画像を追加します。

0
karim

次のように、UIImageviewをナビゲーションバーに追加できます。UINavigationBar navBar = [[UINavigationBar alloc] init]; [navBar addSubview:imageview]; [navBarリリース];

あなたは投稿をチェックすることができます: iPhone-NavigationBar Custom Background

0
Minakshi