iOS 15 tabBar

UITabBarAppearance*appearance=[[UITabBarAppearance alloc]init];//tabBaritem title选中状态颜色appearance.stackedLayoutAppearance.selected.titleTextAttributes=@{NSForegroundColorAttributeName:[UIColor blueColor],};//tabBaritem title未选中状态颜色appearance.stackedLayoutAppearance.normal.titleTextAttributes=@{NSForegroundColorAttributeName:[UIColor blueColor],};//tabBar背景颜色appearance.backgroundColor=[UIColor blackColor];self.tabBarItem.scrollEdgeAppearance=appearance;self.tabBarItem.standardAppearance=appearance;

你可能感兴趣的:(iOS 15 tabBar)