1234567891011121314151617181920212223242526 |
- //
- // OrderDataCell.swift
- // xingchuangke
- //
- // Created by 李晓飞 on 2020/8/27.
- // Copyright © 2020 Virgil. All rights reserved.
- //
- import UIKit
- class AchiveDataCell: UITableViewCell {
- @IBOutlet weak var titleLbl: UILabel!
- @IBOutlet weak var numLbl: UILabel!
- 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
- }
- }
|