PromotionCell.swift 434 B

1234567891011121314151617181920212223
  1. //
  2. // PromotionCell.swift
  3. // ADHTuanCan
  4. //
  5. // Created by 敖德亨 on 2023/11/12.
  6. //
  7. import UIKit
  8. class PromotionCell: UITableViewCell {
  9. override func awakeFromNib() {
  10. super.awakeFromNib()
  11. // Initialization code
  12. }
  13. override func setSelected(_ selected: Bool, animated: Bool) {
  14. super.setSelected(selected, animated: animated)
  15. // Configure the view for the selected state
  16. }
  17. }