Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change font on iOS leftBarButtonItem?

Appearance protocol only changes font of navbar's title.

iOS 5

like image 690
vale4674 Avatar asked Dec 06 '25 09:12

vale4674


1 Answers

You have to use the appearance protocol for UIBarButtonItem for the UINavigationBar tree:

UIBarButtonItem *barButtonItemProxy = [UIBarButtonItem appearanceWhenContainedIn:
    [UINavigationBar class], [UINavigationController class], nil];

NSDictionary *textAttributes = @{
    UITextAttributeFont : [UIFont boldSystemFontOfSize:12.0f],
    UITextAttributeTextColor : [UIColor whiteColor],
    UITextAttributeTextShadowColor : [UIColor blackColor],
    UITextAttributeTextShadowOffset : [NSValue valueWithUIOffset:UIOffsetMake(0.0f, -1.0f)]
};
[barButtonItemProxy setTitleTextAttributes:textAttributes forState:UIControlStateNormal];
like image 92
John Estropia Avatar answered Dec 08 '25 23:12

John Estropia