Search code examples
iosfontsuinavigationbaruinavigationitem

Change font on iOS leftBarButtonItem?


Appearance protocol only changes font of navbar's title.

iOS 5


Solution

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