Navigation Controller内で戻るボタンの色合いを設定しようとしていますが、何も機能しません。私が試してみました
[self.navigationController.backBarButtonItem setTintColor:myColor];
//myColor was previously set
しかし、それはデフォルトの色合いのままです
BarButtonItemは読み取り専用だと思います。 (これについてはよくわかりませんが、間違っている場合は誰かが私を修正します)
これらのボタンに色合いを付けるには、次のようにします。
アプリデリゲートで、次のコード行を追加します。
UIBarButtonItem *barButtonAppearance = [UIBarButtonItem appearance];
[barButtonAppearance setTintColor:[UIColor redColor]]; // Change to your colour
最初の行は外観プロキシを設定するので、コードがあまり好きでなければこれも機能すると思います:
[[UIBarButtonItem appearance] setTintColor:[UIColor redColor]];
これがあなたの役に立つことを願っています! (これにより、UIBarButtonItemのすべてのインスタンスが変更されます)
UINavigationItemの濃淡の色を直接変更することはできません。ナビゲーションバーの濃淡の色を変更する必要があり、バーボタンの色が自動的に変更されます。
これらの行をviewWillAppearメソッドに追加します
[[self.navigationController navigationBar] tintColor] = [UIColor myColor];
または、カスタムボタンを作成し、UIBarButtonItemを次のように初期化できます。
UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:yourUIButton];
これは私のために働いた。
[self.navigationController.navigationBar setTintColor:[UIColor redColor]];
それは2番目の答えに非常に似ています...
迅速な方法:
ナビゲーション内のすべてのアイテムを変更します。
AppDelegateで次のようなことを行います。
let navControl = UINavigationBar.appearance()
navControl.tintColor = UIColor.grayColor()
定義済みのスタイルに設定する場合は、使用できます
[navigationBar setBarStyle: UIBarStyleBlack];
さて、ナビゲーションボタンの[戻る]ボタンまたは任意のバーボタンの色を確実に変更できます。これを行うための小さなスニペットを次に示します。
UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonItemStylePlain target:self action:nil];
backButton.tintColor = [UIColor blackColor];
[self.navigationItem setBackBarButtonItem:backButton];
[backButton release];
これは、これを行うための方法の1つにすぎません。これがお役に立てば幸いです!!私はそれに対する答えがすでに受け入れられていることを知っていますが、適切なスニペットを与えると考えました。乾杯!!!ハッピーコーディング!!
それはいつも私のために働く:
self.navigationItem.leftBarButtonItem = [self logicToAddBackButton];
デフォルトのバックボタンを取得
-
(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]で必要に応じて画像の色を変更してください)
戻るボタンの色をグローバルに設定する次のコードを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以降でサポートされています
私のために働いたのはこれでした:
self.navigationController.navigationBar.titleTextAttributes = [NSDictionary dictionaryWithObject:[UIColor textPrimaryColor] forKey:NSForegroundColorAttributeName];