NetNewsWire/iOS/Settings/SettingsComboTableViewCell.swift

31 lines
773 B
Swift
Raw Normal View History

//
// SettingsAccountTableViewCell.swift
// NetNewsWire-iOS
//
// Created by Maurice Parker on 10/23/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import UIKit
final class SettingsComboTableViewCell: VibrantTableViewCell {
@IBOutlet weak var comboImage: UIImageView!
@IBOutlet weak var comboNameLabel: UILabel!
override func updateVibrancy(animated: Bool) {
super.updateVibrancy(animated: animated)
updateLabelVibrancy(comboNameLabel, color: labelColor, animated: animated)
2025-01-22 22:18:09 -08:00
let tintColor = isHighlighted || isSelected ? AppColor.vibrantText : UIColor.label
2020-10-22 18:56:33 -05:00
if animated {
UIView.animate(withDuration: Self.duration) {
self.comboImage?.tintColor = tintColor
}
} else {
self.comboImage?.tintColor = tintColor
}
}
2025-01-22 22:18:09 -08:00
}