美文网首页
iOS 15 tabBar

iOS 15 tabBar

作者: dxin_101 | 来源:发表于2022-01-07 16:58 被阅读0次

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

      本文链接:https://www.haomeiwen.com/subject/xvgjcrtx.html