Blame view

HDFwear/Mine/View/MedalCell.swift 335 Bytes
f2cf74c7   yangbin   1.0.20(4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  //
  //  MedalCell.swift
  //  HDFwear
  //
  //  Created by yangbin on 2022/3/23.
  //
  
  import UIKit
  
  class MedalCell: UICollectionViewCell {
  
      @IBOutlet weak var imageView: UIImageView!
      @IBOutlet weak var detailLabel: UILabel!
      
      override func awakeFromNib() {
          super.awakeFromNib()
          // Initialization code
      }
  
  }