Custom Font in Tabbar

后端 未结 3 507
孤城傲影
孤城傲影 2020-12-29 17:01

Hey,
is there a way to set the tabbar\'s font to e.g. Chalkboard? I\'ve seen the question for the font size and tried it with font, but the loop wouldn\'t work out.

3条回答
  •  南笙
    南笙 (楼主)
    2020-12-29 17:48

    Put in the AppDelegate.m under:

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

    Here is the code:

        NSMutableDictionary *attributes = [NSMutableDictionary dictionaryWithDictionary: [[UITabBarItem appearance] titleTextAttributesForState:UIControlStateNormal]];
    [attributes setValue:[UIFont fontWithName:@"Avenir" size:10] forKey:UITextAttributeFont];
    [[UITabBarItem appearance] setTitleTextAttributes:attributes1 forState:UIControlStateNormal];
    

提交回复
热议问题