Change font of back navigation bar button

前端 未结 7 1124
走了就别回头了
走了就别回头了 2020-12-04 17:38

I want to be able to set the font of my apps navigation bar back button without doing anything too crazy and without losing any other design characteristics of the button (i

7条回答
  •  不思量自难忘°
    2020-12-04 18:18

    For anyone that did not fully got this to work, here is how i did it, including popped back to the Root ViewController in IOS7:

    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];
    }
    

    Maybe someone may have use of this.

提交回复
热议问题