无故事王国
2023-10-25 158f3707711ad4be78a55dc73a98aa1c9acda0dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  TroubleHistoryTCell.swift
//  BrokerDriver
//
//  Created by 无故事王国 on 2023/5/5.
//
 
import UIKit
 
class TroubleHistoryTCell: UITableViewCell {
    @IBOutlet weak var label_title: UILabel!
    @IBOutlet weak var label_time: UILabel!
    
    override func awakeFromNib() {
        super.awakeFromNib()
        selectionStyle = .none
    }
    
}