1234567891011121314151617181920212223 |
- //
- // PromotionCell.swift
- // ADHTuanCan
- //
- // Created by 敖德亨 on 2023/11/12.
- //
- import UIKit
- class PromotionCell: UITableViewCell {
- override func awakeFromNib() {
- super.awakeFromNib()
- // Initialization code
- }
- override func setSelected(_ selected: Bool, animated: Bool) {
- super.setSelected(selected, animated: animated)
- // Configure the view for the selected state
- }
-
- }
|