无故事王国
2023-10-10 a1ac0f1634ff0bd8f04259fc4cf7ebabd8c8c82d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  CustomerContentQATCell.swift
//  WanPai
//
//  Created by 无故事王国 on 2023/6/30.
//
 
import UIKit
 
class CustomerContentQATCell: UITableViewCell {
    @IBOutlet weak var label_content: UILabel!
 
    var noticeItemModel:NoticeItemModel!{
        didSet{
            label_content.text = noticeItemModel.quesTitle
        }
    }
 
    override func awakeFromNib() {
        super.awakeFromNib()
        selectionStyle = .none
    }
}