iOS13 TabBarItem title 标题变化 设置无效

iOS13之前使用的是:

设置item title颜色

 [[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:

                                                       [UIColor redColor], NSForegroundColorAttributeName,

                                                     nil] forState:UIControlStateSelected、UIControlStateNormal];

设置选中 及默认的颜色

在iOS13运行项目时发现 在从A页面Push B页面隐藏tabbar 后返回 点击tabbarItem时 title的颜色被重置成系统色值

解决:

*目前我的方法只能解决设置选中的颜色 没法设置默认颜色

设置图片的方法不变

设置title 选中颜色使用

 tabVC.tabBar.tintColor = [UIColor redColor];

因为默认的情况下我们的项目图片也是蓝色的 所以目前不用设置默认颜色

看到此贴后有人有更好的解决方案 希望能分享...

if (@available(iOS 10.0, *)) {

         [[UITabBar appearance] setUnselectedItemTintColor:[UIColor redColor]];

    } else {

        // Fallback on earlier versions

    }

  

你可能感兴趣的:(iOS,常见问题)