UITableViewCell.swift 506 B

1234567891011121314151617181920212223
  1. //
  2. // UITableViewCell.swift
  3. // Mastodon
  4. //
  5. // Created by MainasuK Cirno on 2021-7-5.
  6. //
  7. import UIKit
  8. extension UITableViewCell {
  9. /// The color of the cell when it is selected.
  10. @objc dynamic var selectionColor: UIColor? {
  11. get { return selectedBackgroundView?.backgroundColor }
  12. set {
  13. guard selectionStyle != .none else { return }
  14. let view = UIView()
  15. view.backgroundColor = newValue
  16. selectedBackgroundView = view
  17. }
  18. }
  19. }