无故事王国
2023-06-29 66e7071aa076b7eac9d6bb431857af5be63a2680
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  CommonSingleTCell.swift
//  WanPai
//
//  Created by 无故事王国 on 2023/6/29.
//
 
import UIKit
 
class CommonSingleTCell: UITableViewCell {
 
    override func awakeFromNib() {
        super.awakeFromNib()
        selectionStyle = .none
    }
    
}