younger_times
2023-08-15 84c2c8a6365b312823f1f73443c536ad0c3dc2f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
//  BaseTCell.swift
//  BrokerDriver
//
//  Created by 无故事王国 on 2023/4/24.
//
 
import UIKit
 
class BaseTCell: UITableViewCell {
 
    override func awakeFromNib() {
        super.awakeFromNib()
        selectionStyle = .none
    }
}