美文网首页
IOS 13 Tabbar,字体颜色修复

IOS 13 Tabbar,字体颜色修复

作者: leejobs | 来源:发表于2019-10-16 15:34 被阅读0次

    ios 13中使用富文本设置tabbar默认颜色异常

    [obj.tabBarItem setTitleTextAttributes:@{NSFontAttributeName:[UIFont customWithName:@"PingFangSC-Regular" size:10],NSForegroundColorAttributeName:[UIColor blackColor]} forState:UIControlStateNormal];

            [obj.tabBarItem setTitleTextAttributes:@{NSFontAttributeName:[UIFont customWithName:@"PingFangSC-Regular" size:10],NSForegroundColorAttributeName:[UIColor colorWithHex:@"#2C68FF"]} forState:UIControlStateSelected];

    修改:

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

            self.tabBar.unselectedItemTintColor = [UIColor blackColor];

            self.tabBar.tintColor = [UIColor colorWithHex:@"#2C68FF"];

        } else {

            // Fallback on earlier versions

        }

    相关文章

      网友评论

          本文标题:IOS 13 Tabbar,字体颜色修复

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