iOS 13 tabbar 字体颜色更改
2019-11-14 本文已影响0人
f48ac133a97f
此方法在 iOS 13 会有 bug,当我们 push 到下一页再次返回时 tabbar 字体颜色设置会失效。
[tabbarItem setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor colorWithHexString:@"#FF2920"]}forState:UIControlStateSelected];
我们可以这样写:
self.tabBar.tintColor=[UIColor colorWithHexString:@"#FF2920"];