AchiveAccountCell.swift 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // AchiveAccountCell.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/28.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class AchiveAccountCell: UITableViewCell {
  10. @IBOutlet weak var targetView: UIView!
  11. @IBOutlet weak var nameLabel: UILabel!
  12. override var isSelected: Bool {
  13. didSet {
  14. reloadCell()
  15. }
  16. }
  17. func reloadCell() {
  18. if isSelected {
  19. targetView.isHidden = false
  20. nameLabel.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x2094F5, alpha: 1.0)
  21. self.contentView.backgroundColor = UIColor.white
  22. // nameLbl.layer.borderColor
  23. // nameLbl.layer.borderWidth
  24. } else {
  25. targetView.isHidden = true
  26. nameLabel.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x333333)
  27. self.contentView.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xF5F5F5)
  28. }
  29. }
  30. override func awakeFromNib() {
  31. super.awakeFromNib()
  32. // Initialization code
  33. }
  34. override func setSelected(_ selected: Bool, animated: Bool) {
  35. super.setSelected(selected, animated: animated)
  36. // Configure the view for the selected state
  37. }
  38. }