美文网首页
tabbar--颜色

tabbar--颜色

作者: Nathania | 来源:发表于2016-05-16 11:46 被阅读0次

    // 字体颜色 选中

    [[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Bold" size:12.0F], NSForegroundColorAttributeName : TAB_BAR_COLOR} forState:UIControlStateSelected];

    // 字体颜色 未选中

    [[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName : [UIFont systemFontOfSize:12.0F],  NSForegroundColorAttributeName:[UIColor grayColor]} forState:UIControlStateNormal];

    // 图标颜色

    self.tabBar.tintColor = TAB_BAR_COLOR;

    相关文章

      网友评论

          本文标题:tabbar--颜色

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