eggswift / ESTabBarController

:octocat: ESTabBarController is a Swift model for customize UI, badge and adding animation to tabbar items. Support lottie!
MIT License
5.17k stars 578 forks source link

提个源码问题 highlightTextColor 的Set 方法 #263

Open leisong1125 opened 2 years ago

leisong1125 commented 2 years ago

我在查看源码的 过程中发现 highlightTextColor的 set 方法里赋值的是 highlightIconColor

    /// 高亮时文字颜色
    open var highlightTextColor = UIColor(red: 0.0, green: 0.47843137, blue: 1.0, alpha: 1.0) {
        didSet {
            if selected { titleLabel.textColor = highlightIconColor }
        }
    }