美文网首页
Xcode 提示记录

Xcode 提示记录

作者: 文瑶906 | 来源:发表于2017-06-05 11:49 被阅读0次
    button text attributes only respected for UIControlStateNormal, UIControlStateSelected, UIControlStateFocused, and UIControlStateDisabled. state = 1 is interpreted as UIControlStateSelected.
    

    把 下发代码中的 ".highlighted" 改成 ".selected"

     // 4. 设置tabbar 的标题字体(大小)
            vc.tabBarItem.setTitleTextAttributes([NSForegroundColorAttributeName: UIColor.orange], for: .highlighted)
    
    // 改成:
    vc.tabBarItem.setTitleTextAttributes([NSForegroundColorAttributeName: UIColor.orange], for: .selected)
    
    

    相关文章

      网友评论

          本文标题:Xcode 提示记录

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