web-dev-qa-db-ja.com

iPhoneのバックバーボタンアイテムの色合いの設定

Navigation Controller内で戻るボタンの色合いを設定しようとしていますが、何も機能しません。私が試してみました

[self.navigationController.backBarButtonItem setTintColor:myColor];
//myColor was previously set

しかし、それはデフォルトの色合いのままです

18
user717452

BarButtonItemは読み取り専用だと思います。 (これについてはよくわかりませんが、間違っている場合は誰かが私を修正します)

これらのボタンに色合いを付けるには、次のようにします。

アプリデリゲートで、次のコード行を追加します。

UIBarButtonItem *barButtonAppearance = [UIBarButtonItem appearance];
[barButtonAppearance setTintColor:[UIColor redColor]]; // Change to your colour

最初の行は外観プロキシを設定するので、コードがあまり好きでなければこれも機能すると思います:

[[UIBarButtonItem appearance] setTintColor:[UIColor redColor]];

これがあなたの役に立つことを願っています! (これにより、UIBarButtonItemのすべてのインスタンスが変更されます)

35
Qiming

UINavigationItemの濃淡の色を直接変更することはできません。ナビゲーションバーの濃淡の色を変更する必要があり、バーボタンの色が自動的に変更されます。

これらの行をviewWillAppearメソッドに追加します

[[self.navigationController navigationBar] tintColor] = [UIColor myColor];

または、カスタムボタンを作成し、UIBarButtonItemを次のように初期化できます。

UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:yourUIButton];
32

これは私のために働いた。

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

それは2番目の答えに非常に似ています...

25
Eric

コードを記述せずにInterface Builderで実行する場合:

  1. UINavigationBarを選択します(UINavigationController内)

enter image description here

  1. 属性インスペクターで「色合い」を見つけます-これが戻るボタンの色を設定するものです。 「バーの色合い」は同じではないことに注意してください-これにより、ナビゲーションバーの背景色が設定されます。

enter image description here

LeftBarButtonItemを実装すると、スワイプして戻るなどの組み込みの戻るナビゲーションジェスチャが無効になるため、この方法で[戻る]ボタンの外観を設定し、leftBarButtonItemを実装しないことが重要です。

4
Alex

迅速な方法:

ナビゲーション内のすべてのアイテムを変更します。

AppDelegateで次のようなことを行います。

let navControl = UINavigationBar.appearance()
    navControl.tintColor = UIColor.grayColor()
1
Joseph Geraghty

定義済みのスタイルに設定する場合は、使用できます

    [navigationBar setBarStyle: UIBarStyleBlack];
0
r0ro

さて、ナビゲーションボタンの[戻る]ボタンまたは任意のバーボタンの色を確実に変更できます。これを行うための小さなスニペットを次に示します。

UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonItemStylePlain target:self action:nil];
backButton.tintColor = [UIColor blackColor];
[self.navigationItem setBackBarButtonItem:backButton];
[backButton release];

これは、これを行うための方法の1つにすぎません。これがお役に立てば幸いです!!私はそれに対する答えがすでに受け入れられていることを知っていますが、適切なスニペットを与えると考えました。乾杯!!!ハッピーコーディング!!

0
Apple_iOS0304

それはいつも私のために働く:

  1. self.navigationItem.leftBarButtonItem = [self logicToAddBackButton];

  2. デフォルトのバックボタンを取得

-

(UIBarButtonItem*) logicToAddBackButton
        {
            UIImageView *imageView;

            // [imageView setTintColor:[UIColor redColor]];
            UILabel *label=[[UILabel alloc] init];
            if (WHITEBACK) {
                imageView  =[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"UiNavigationBackIPAD"]];
                [label setTextColor:[UIColor whiteColor]];
            }else{ //DEFAULTBACK
                imageView  =[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"UiNavigationBack"]];
                [label setTextColor:[UIColor colorWithRed:0.0 green:122.0/255.0 blue:1.0 alpha:1.0]];

            }

            [label setText:@"Back"];
            [label sizeToFit];

            int space=6;
            label.frame=CGRectMake(imageView.frame.Origin.x+imageView.frame.size.width+space,
    label.frame.Origin.y, label.frame.size.width,
    label.frame.size.height);
            UIView *view=[[UIView alloc] initWithFrame:CGRectMake(0, 0, label.frame.size.width+imageView.frame.size.width+space,
    imageView.frame.size.height)];

            view.bounds=CGRectMake(view.bounds.Origin.x+8, view.bounds.Origin.y-1, view.bounds.size.width,
    view.bounds.size.height);


            UIButton *button=[[UIButton alloc] initWithFrame:CGRectMake(view.bounds.Origin.x, view.bounds.Origin.y,
    view.bounds.size.width, view.bounds.size.height)];
            button.bounds=CGRectMake(view.bounds.Origin.x, view.bounds.Origin.y, view.bounds.size.width,
    view.bounds.size.height);
            [button addTarget:self action:@selector(eventBack) forControlEvents:UIControlEventTouchUpInside];
            [button addSubview:imageView];
            [button addSubview:label];


            [UIView animateWithDuration:0.33 delay:0 options:UIViewAnimationOptionCurveLinear animations:^{
                label.alpha = 0.0;
                CGRect orig=label.frame;
                label.frame=CGRectMake(label.frame.Origin.x+25, label.frame.Origin.y -5, label.frame.size.width,
    label.frame.size.height+10);
                label.alpha = 1.0;
                label.frame=orig;
            } completion:nil];

            UIBarButtonItem *backButton =[[UIBarButtonItem alloc] initWithCustomView:button];


            return backButton;
        }
  • バックボタンアクション

    (void)eventBack {[self.navigationController popViewControllerAnimated:YES]; }

  • UiNavigationBack Image(デフォルトの外観を得るには、同じサイズ[25X41 144pixels/inch]で必要に応じて画像の色を変更してください) enter image description here

0
Yogesh Lolusare

戻るボタンの色をグローバルに設定する次のコードをAppDelegateに配置します

//Set color of BackButtonItem globally

[[UIBarButtonItem appearance] setTintColor:[UIColor colorWithRed:5.0/255.0 
green:127.0/255.0 blue:173.0/255.0 alpha:1.0]];

これはiOS 5以降でサポートされています

0

私のために働いたのはこれでした:

self.navigationController.navigationBar.titleTextAttributes = [NSDictionary dictionaryWithObject:[UIColor textPrimaryColor] forKey:NSForegroundColorAttributeName];
0
Nilesh Agrawal