2019-12-03

iOS 13适配:UITabBarItem上title颜色变成蓝色的问题

适配iOS 13发现设置UITabBarItem的颜色,出现了在选中状态下tabBarItem选中颜色变为系统蓝色的bug,修改如下:


在TabBarViewController中加入颜色,重新设置tabbar的tintColor即可解决问题。

-(void)viewWillAppear:(BOOL)animated

{

    // 适配iOS13导致的bug

    if(@available(iOS13.0, *)) {

        self.tabBar.tintColor = [UIColor greenColor];

   }

}

你可能感兴趣的:(2019-12-03)