Changing font size of tabbaritem

后端 未结 10 1766
忘掉有多难
忘掉有多难 2020-11-30 06:18

Is it possible to change the font size of tabs?

10条回答
  •  执念已碎
    2020-11-30 07:15

    I recommend a better way:

    [yourTabBarItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
        [UIColor whiteColor], UITextAttributeTextColor, 
        [NSValue valueWithUIOffset:UIOffsetMake(0,0)], UITextAttributeTextShadowOffset, 
        [UIFont fontWithName:@"Helvetica" size:18.0], UITextAttributeFont, nil]
        forState:UIControlStateNormal];
    

提交回复
热议问题