无法设置UILabel的textColor

时间:2018-04-30 20:25:44

标签: ios swift uilabel uicolor

我目前正在开发一个源自UITableViewCells Xibs的动态表单。

if disabled {
    self.passTitleLabel.textColor = UIColor(named: "Dark Blue")
    self.textField.textColor = UIColor(named: "Dark Blue")
} else {
    self.passTitleLabel.textColor = UIColor(named: "Light Blue")
    self.textField.textColor = .white
}

UILabel(passTitleLabel)将颜色设置保留在Storyboard文件中,并且不会按预期更改。 UILabel已启用但未突出显示,但仍保留故事板上的颜色。

所有颜色都在其他类中工作(它们在Assets.xcassets上)。标签使用IBOutlet正确设置。

1 个答案:

答案 0 :(得分:6)

遇到了同样的问题,花了我一段时间,但终于找到了答案。看起来您的UITableViewCell或UICollectionViewCell在后台线程中运行,与UI相关的操作需要在主线程中完成,否则可能导致此类问题。

if disabled {
   DispatchQueue.main.async {
      self.passTitleLabel.textColor = UIColor(named: "Dark Blue")
      self.textField.textColor = UIColor(named: "Dark Blue")
   }
} else {
   DispatchQueue.main.async {
      self.passTitleLabel.textColor = UIColor(named: "Light Blue")
      self.textField.textColor = .white
   }
}