CYLTabBarController
CYLTabBarController copied to clipboard
[Q-A]iOS13怎么修改tabbar上的文字大小,以前的方法失效了,点进去找半天没找到新的方法
selectedAttrs[NSFontAttributeName] = [UIFont systemFontOfSize:12.f];
以前用的这句代码。兄弟萌知道新的代码吗
我找到了
UITabBarAppearance *appearance = UITabBarAppearance.new;
NSMutableParagraphStyle *par = [[NSMutableParagraphStyle alloc]init];
par.alignment = NSTextAlignmentCenter;
UITabBarItemStateAppearance *normal = appearance.stackedLayoutAppearance.normal;
if (normal) {
normal.titleTextAttributes = @{NSFontAttributeName : [UIFont systemFontOfSize:font]};
}
UITabBarItemStateAppearance *selected = appearance.stackedLayoutAppearance.selected;
if (selected) {
selected.titleTextAttributes = @{NSFontAttributeName : [UIFont systemFontOfSize:font]};
}
tabar13.standardAppearance = appearance;
遇到相同问题的朋友可以看看