titleTextAttributes UIAppearance font in iOS 7

前端 未结 7 1580
醉酒成梦
醉酒成梦 2020-12-08 09:47

I am using UIAppearance to apply fonts to UINavigationBar and UIBarButtonItem and I am having problems. I ran this code:

[[UIBarButtonItem appearanceWhenCont         


        
7条回答
  •  感情败类
    2020-12-08 10:50

    Following @Alex Zavatone's answer - it could be done nicely in just one line of code:

    self.navBar.titleTextAttributes = @{
        NSFontAttributeName: [UIFont fontWithName:@"HelveticaNeue-Light" size:20.0], 
        NSForegroundColorAttributeName: [UIColor redColor]
    };
    

提交回复
热议问题