//
|
// Common_1_TCell.swift
|
// WanPai
|
//
|
// Created by 杨锴 on 2023/6/9.
|
//
|
|
import UIKit
|
|
class Common_1_TCell: UITableViewCell {
|
|
@IBOutlet weak var label_content: UILabel!
|
@IBOutlet weak var img_select: UIImageView!
|
override func awakeFromNib() {
|
super.awakeFromNib()
|
selectionStyle = .none
|
}
|
|
override var isSelected: Bool{
|
didSet{
|
img_select.image = isSelected ? UIImage(named: "btn_choose_s"):UIImage(named: "btn_choose")
|
label_content.textColor = isSelected ? Def_ThemeColor : .black.withAlphaComponent(0.56)
|
}
|
}
|
}
|