web-dev-qa-db-ja.com

戻るナビゲーションバーボタンのフォントを変更する

アプリのナビゲーションバーの戻るボタンのフォントを、あまりクレイジーなことをせずに、ボタンの他​​のデザイン特性を失うことなく設定できるようにしたい(つまり、矢印を維持したい)。

今私はこれをviewDidAppear:は、通常のバーボタン項目のフォントを設定します。

for (NSObject *view in self.navigationController.navigationBar.subviews) {
    if ([view isKindOfClass:[UIButton class]]) {
        [((UIButton*)view).titleLabel setFont:[UIFont 
                                 fontWithName:@"Gill Sans" 
                                         size:14.0]];
    }
}

ただし、このコードがどのUIViewControllerに適用されているかに関係なく(ルート、現在など)、[戻る]ボタンは変更されません。

47
zachjs

すべてのUIBarButtonItemsに表示されるすべてのUINavigationBarsのテキストの外観を変更するには、application:didFinishLaunchingWithOptions:

[[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class], nil] setTitleTextAttributes:
    @{UITextAttributeTextColor:[UIColor blackColor],
     UITextAttributeTextShadowOffset:[NSValue valueWithUIOffset:UIOffsetMake(0, 1)],
     UITextAttributeTextShadowColor:[UIColor whiteColor],
     UITextAttributeFont:[UIFont boldSystemFontOfSize:12.0]
    }
     forState:UIControlStateNormal];

更新:iOS7フレンドリーバージョン

NSShadow *shadow = [[NSShadow alloc] init];
shadow.shadowOffset = CGSizeMake(0.0, 1.0);
shadow.shadowColor = [UIColor whiteColor];

[[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class], nil]
 setTitleTextAttributes:
 @{NSForegroundColorAttributeName:[UIColor blackColor],
   NSShadowAttributeName:shadow,
   NSFontAttributeName:[UIFont boldSystemFontOfSize:12.0]
   }
 forState:UIControlStateNormal];

迅速:

注:これは、UIBarButtonItem内に含まれるインスタンスだけでなく、UINavigationBarのすべてのインスタンスを変更します

UIBarButtonItem.appearance()
               .setTitleTextAttributes([NSFontAttributeName : ExamplesDefaults.fontWithSize(22)], 
                                       forState: UIControlState.Normal)

Swift3:

UIBarButtonItem.appearance()
     .setTitleTextAttributes([NSFontAttributeName: UIFont(name: "FontName-Regular", size: 14.0)!], 
                             for: .normal) 
114
Mike Pollard

これを完全に機能させることができなかった人のために、IOS7のルートViewControllerにポップバックするなど、私がそれをどのように行ったかを示します:

UIBarButtonItem *backBtn =[[UIBarButtonItem alloc]initWithTitle:@"Back" style:UIBarButtonItemStyleDone target:self action:@selector(popToRoot:)];
backBtn.title = @"Back";
[backBtn setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                 [UIFont fontWithName:@"Chalkduster" size:15], NSFontAttributeName,
                                 [UIColor yellowColor], NSForegroundColorAttributeName,
                                 nil]
                       forState:UIControlStateNormal];

self.navigationItem.leftBarButtonItem=backBtn;

popToRoot ViewController:

- (IBAction)popToRoot:(UIBarButtonItem*)sender {
[self.navigationController popToRootViewControllerAnimated:YES];
}

たぶん誰かがこれを使用するかもしれません。

6
PeterK

上記のすべての迅速なバージョン( 元の答え からの抜粋):

let customFont = UIFont(name: "customFontName", size: 17.0)!
UIBarButtonItem.appearance().setTitleTextAttributes([NSFontAttributeName: customFont], forState: .normal)

その他の特典:
https://stackoverflow.com/a/28347428/469614

4
Vexy

Swift 3.0 +

AppDelegate.Swift

UIBarButtonItem.appearance().setTitleTextAttributes([NSAttributedStringKey.font: UIFont(name: "myFont", size: 17.0)!], for: .normal)
2
smohn

Swift3の場合:

let font = UIFont(name: "Verdana", size: 10.0)

// Back button
UIBarButtonItem.appearance().setTitleTextAttributes([NSFontAttributeName: font!], for: UIControlState.normal)  

// Title in the navigation item
let fontAttributes = [NSFontAttributeName: font]
self.navigationController?.navigationBar.titleTextAttributes = fontAttributes

注:これを実行する必要があるのは、Navigation Controllerに対して1回だけです。

2
Vincent

代わりにこれをAppDelegateまたはNavigationControllerが初期化されている場所で使用します。iOS5以降で使用可能なメソッド

UIBarButtonItem *backbutton =  [[UIBarButtonItem alloc] initWithTitle:@"back" style:UIBarButtonItemStyleBordered target:nil action:nil];  
[backbutton setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                                   [UIColor blackColor],UITextAttributeTextColor,[UIFont fontWithName:TEXTFONT size:16.0f],UITextAttributeFont,
                                                   nil] forState:UIControlStateNormal]; 
1
Ahmed Z.

IOS 8の分割ビューに新しい ISplitViewControllerDelegate を使用している場合、新しいdisplayModeButtonItemの動作が少し異なるため、上記のメソッドは機能しません。

displayModeButtonItemを作成するときにフォントを設定する必要があります。 Appleのテンプレートをフォローしていると仮定すると、これはおそらくprepareForSegue:(UIStoryboardSegue *)segue sender:(id)senderにあり、次のようなことができます:

// From Apple's Template:
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
NSManagedObject *object = [[self fetchedResultsController] objectAtIndexPath:indexPath];
DetailViewController *controller = (DetailViewController *)[[segue destinationViewController] topViewController];
[controller setDetailItem:object];
controller.navigationItem.leftBarButtonItem = self.splitViewController.displayModeButtonItem;
controller.navigationItem.leftItemsSupplementBackButton = YES;
// New Line to set the font:
[controller.navigationItem.leftBarButtonItem setTitleTextAttributes:@{NSFontAttributeName : [UIFont fontWithName:@"SourceSansPro-Regular" size:14]} forState:UIControlStateNormal];
0
Nick