Change selected table row text to be white. Issue #693

This commit is contained in:
Maurice Parker
2019-08-03 16:25:35 -05:00
parent 4ece4173ba
commit 02575c31fe
5 changed files with 52 additions and 1 deletions

View File

@@ -105,6 +105,12 @@ class MasterFeedTableViewCell : UITableViewCell {
commonInit()
}
override func setSelected(_ selected: Bool, animated: Bool) {
titleView.textColor = selected ? AppAssets.selectedTextColor : UIColor.label
faviconImageView.tintColor = selected ? AppAssets.selectedTextColor : tintColor
super.setSelected(selected, animated: animated)
}
override func willTransition(to state: UITableViewCell.StateMask) {
super.willTransition(to: state)
showingEditControl = state.contains(.showingEditControl)