Change the navigation bar's font

前端 未结 7 1466
没有蜡笔的小新
没有蜡笔的小新 2020-12-02 10:41

The question is plain easy and simple, the answer unfortunately not.

How can you change the font of the text in the UINavigationBar?

7条回答
  •  长情又很酷
    2020-12-02 10:59

         NSShadow *shadow = [NSShadow new];
    [shadow setShadowColor: [UIColor clearColor]];
    [shadow setShadowOffset: CGSizeMake(0.0f, 1.0f)];
    
    [self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                             [UIFont fontWithName:@"TimeBurner" size:27.0f], NSFontAttributeName,
                                             [UIColor whiteColor], NSForegroundColorAttributeName,
                                             shadow, NSShadowAttributeName,nil]];
    

提交回复
热议问题